diff --git a/src/DiIiS-NA/D3-GameServer/GSSystem/ItemsSystem/Item.cs b/src/DiIiS-NA/D3-GameServer/GSSystem/ItemsSystem/Item.cs index 9d32bc2..83f9aa0 100644 --- a/src/DiIiS-NA/D3-GameServer/GSSystem/ItemsSystem/Item.cs +++ b/src/DiIiS-NA/D3-GameServer/GSSystem/ItemsSystem/Item.cs @@ -31,7 +31,7 @@ namespace DiIiS_NA.GameServer.GSSystem.ItemsSystem get; private set; //needed in Future, set this to true if Item affixes or item attributes have changed. } - + public override ActorType ActorType => ActorType.Item; public Actor Owner { get; set; } // Only set when the _actor_ has the item in its inventory. /fasbat @@ -43,10 +43,10 @@ namespace DiIiS_NA.GameServer.GSSystem.ItemsSystem public bool Unidentified { get => Attributes[GameAttributes.Unidentified]; - set - { + set + { Attributes[GameAttributes.Unidentified] = value; - if (DBInventory is {} dbInventory) dbInventory.Unidentified = value; + if (DBInventory is { } dbInventory) dbInventory.Unidentified = value; } } @@ -832,14 +832,84 @@ namespace DiIiS_NA.GameServer.GSSystem.ItemsSystem public override void OnTargeted(Player player, TargetMessage message) { + player.Inventory.RefreshInventoryToClient(); var playerAcc = player.InGameClient.BnetClient.Account.GameAccount; switch (SNO) { - case ActorSno._tieredlootrunkey_0: + case ActorSno._tieredlootrunkey_0: //Greater Rift Key playerAcc.BigPortalKey++; Destroy(); break; + case ActorSno._crafting_assortedparts_05: //Reusable Parts + playerAcc.CraftItem1++; + Destroy(); + break; + + case ActorSno._crafting_magic_05: //Arcanes Dust + playerAcc.CraftItem2++; + Destroy(); + break; + + case ActorSno._crafting_rare_05: //Veiled Crystal + playerAcc.CraftItem3++; + Destroy(); + break; + + case ActorSno._crafting_looted_reagent_05: //Death's Breath + playerAcc.CraftItem4++; + Destroy(); + break; + + case ActorSno._crafting_legendary_05: //Forgotten Soul + playerAcc.CraftItem5++; + Destroy(); + break; + + case ActorSno._craftingreagent_legendary_set_borns_x1: //Khanduran Rune Bounty itens Act I. + playerAcc.HoradricA1Res++; + Destroy(); + break; + + case ActorSno._craftingreagent_legendary_set_cains_x1: //Caldeum Nightshade Bounty itens Act II. + playerAcc.HoradricA2Res++; + Destroy(); + break; + + case ActorSno._craftingreagent_legendary_set_demon_x1: //Arreat War Tapestry Bounty itens Act III. + playerAcc.HoradricA3Res++; + Destroy(); + break; + + case ActorSno._craftingreagent_legendary_set_hallowed_x1: //Corrupted Angel Flesh Bounty itens Act IV. + playerAcc.HoradricA4Res++; + Destroy(); + break; + + case ActorSno._craftingreagent_legendary_set_captaincrimsons_x1: //Westmarch Holy Water Bounty itens Act V. + playerAcc.HoradricA5Res++; + Destroy(); + break; + + case ActorSno._demonorgan_skeletonking_x1: //Leorik Regret. + playerAcc.LeorikKey++; + Destroy(); + break; + + case ActorSno._demonorgan_ghom_x1: //Vial of Putridness. + playerAcc.VialofPutridness++; + Destroy(); + break; + + case ActorSno._demonorgan_siegebreaker_x1: //Idol of Terror. + playerAcc.IdolofTerror++; + Destroy(); + break; + + case ActorSno._demonorgan_diablo_x1: //Heart of Fright. + playerAcc.HeartofFright++; + Destroy(); + break; default: player.Inventory.PickUp(this); break; @@ -902,7 +972,7 @@ namespace DiIiS_NA.GameServer.GSSystem.ItemsSystem player.InGameClient.SendMessage( new MessageSystem.Message.Definitions.Base.GenericBlobMessage(Opcodes.CurrencyDataFull) - { Data = Moneys.Build().ToByteArray() }); + { Data = Moneys.Build().ToByteArray() }); } public virtual void OnRequestUse(Player player, Item target, int actionId, WorldPlace worldPlace) @@ -1195,7 +1265,7 @@ namespace DiIiS_NA.GameServer.GSSystem.ItemsSystem player.InGameClient.SendMessage( new MessageSystem.Message.Definitions.Base.GenericBlobMessage(Opcodes.CurrencyDataFull) - { Data = moneys.Build().ToByteArray() }); + { Data = moneys.Build().ToByteArray() }); player.Inventory.DestroyInventoryItem(this); return; diff --git a/src/DiIiS-NA/D3-GameServer/GSSystem/PlayerSystem/Inventory.cs b/src/DiIiS-NA/D3-GameServer/GSSystem/PlayerSystem/Inventory.cs index b28a4ef..13a742a 100644 --- a/src/DiIiS-NA/D3-GameServer/GSSystem/PlayerSystem/Inventory.cs +++ b/src/DiIiS-NA/D3-GameServer/GSSystem/PlayerSystem/Inventory.cs @@ -582,7 +582,8 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem ChangeItemLocationDB(old_x, old_y + 1, addedItem); destGrid.PlaceItem(addedItem, old_y + 1, old_x); } - }; + } + ; } else { @@ -1198,12 +1199,12 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem (a.OverrideLevelReq <= Item.ItemDefinition.RequiredLevel) ); - if (!ReloadAffix.Definition.Name.Contains("Secondary")) filteredList = filteredList.Where( a => !a.Name.Contains("Secondary") ); + if (!ReloadAffix.Definition.Name.Contains("Secondary")) filteredList = filteredList.Where(a => !a.Name.Contains("Secondary")); if (!ReloadAffix.Definition.Name.Contains("Experience")) filteredList = filteredList.Where(a => !a.Name.Contains("Experience")); if (!ReloadAffix.Definition.Name.Contains("Archon")) filteredList = filteredList.Where(a => !a.Name.Contains("Archon")); // FIXME: always true? if (ReloadAffix.Definition.Hash == ReloadAffix.Definition.Hash) filteredList = filteredList.Where(a => a.Hash != ReloadAffix.Definition.Hash); - if (Item.GBHandle.GBID == -4139386) filteredList = filteredList.Where( a => !a.Name.Contains("Str") && !a.Name.Contains("Dex") && !a.Name.Contains("Int") && !a.Name.Contains("Vit" )); + if (Item.GBHandle.GBID == -4139386) filteredList = filteredList.Where(a => !a.Name.Contains("Str") && !a.Name.Contains("Dex") && !a.Name.Contains("Int") && !a.Name.Contains("Vit")); Dictionary bestDefinitions = new Dictionary(); @@ -1260,7 +1261,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem if (ReloadAffix.Definition.Name.Contains("Bracer")) result = (float)FastRandom.Instance.Next(1, 3); } - + if (GameAttributes.Attributes[effect.AttributeId] is GameAttributeF) { var attr = GameAttributes.Attributes[effect.AttributeId] as GameAttributeF; @@ -1286,7 +1287,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem foreach (var def in selectedGroups) { - if (def != null) + if (def != null) { List Scores = new List(); foreach (var effect in def.AttributeSpecifier) @@ -1300,7 +1301,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem if (Item.RandomGenerator == null) Item.RandomGenerator = new ItemRandomHelper(Item.Attributes[GameAttributes.Seed]); - + if (FormulaScript.Evaluate(effect.Formula.ToArray(), Item.RandomGenerator, out result, out minValue, out maxValue)) { if (effect.AttributeId == 369) continue; //Durability_Max @@ -1364,13 +1365,13 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem Field1 = (Item.Unidentified ? 0x00000002 : 0x00000001), aAffixGBIDs = affixGbis, }); - + //*/ } } #endregion _owner.GrantCriteria(74987255495718); - + } private void OnTrySalvageAllMessage(TrySalvageAllMessage msg) { @@ -1379,7 +1380,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem int count_reward = 0; switch (msg.SalvageType) { - + // Simple items case 0: foreach (var item in GetBackPackItems()) @@ -1549,7 +1550,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem return; Logger.Warn("Identifying items not implemented yet"); } - + private void OnInventoryUseIdentifyItemMessage(InventoryUseIdentifyItemMessage msg) { var item = GetItemByDynId(_owner, msg.ItemID); @@ -1557,14 +1558,15 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem return; int idDuration = 60; - _owner.StartCasting(idDuration, new Action(() => { + _owner.StartCasting(idDuration, new Action(() => + { item.Identify(); })); } //* private void OnTrySalvageMessage(TrySalvageMessage msg) { - + var item = GetItemByDynId(_owner, msg.ActorID); if (item == null) return; @@ -1633,8 +1635,8 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem _inventoryGrid.RemoveItem(item); item.Unreveal(_owner); - - + + bool haveBrimstone = false; Item brimstone = null; if (item.Attributes[GameAttributes.Item_Quality_Level] > 8 || FastRandom.Instance.Next(1, 1000) == 1) @@ -1656,9 +1658,9 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem gbidOriginalItem = item.GBHandle.GBID, IQLOriginalItem = Math.Min(item.Attributes[GameAttributes.Item_Quality_Level], 9), MaterialsResults = haveBrimstone ? 2 : 1, - gbidNewItems = new int[] { reward.GBHandle.GBID, haveBrimstone ? brimstone.GBHandle.GBID : -1, -1, -1 }, + gbidNewItems = new int[] { reward.GBHandle.GBID, haveBrimstone ? brimstone.GBHandle.GBID : -1, -1, -1 }, MaterialsCounts = new int[] { count_reward, haveBrimstone ? 1 : 0, 0, 0 } - + }); UpdateCurrencies(); @@ -1707,13 +1709,13 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem if (GetGoldAmount() < recipeDefinition.Gold) return; bool haveEnoughIngredients = true; - foreach (var ingr in recipeDefinition.Ingredients) + foreach (var ingr in recipeDefinition.Ingredients) { if (ingr.ItemsGBID == -1 || ingr.ItemsGBID == 0) continue; switch (ingr.ItemsGBID) { case -363607620: // Common parts. - if(_owner.Toon.GameAccount.CraftItem1 < ingr.Count) + if (_owner.Toon.GameAccount.CraftItem1 < ingr.Count) haveEnoughIngredients = false; break; case -1585802162: // Wizard Dust. @@ -1754,7 +1756,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem _stashGrid.RemoveItem(item); item.Unreveal(item.Owner as Player); } - else if(item.Attributes[GameAttributes.ItemStackQuantityLo] > ingr.Count) + else if (item.Attributes[GameAttributes.ItemStackQuantityLo] > ingr.Count) { item.Attributes[GameAttributes.ItemStackQuantityLo] -= ingr.Count; item.Attributes.BroadcastChangedIfRevealed(); @@ -1773,13 +1775,13 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem switch (ingr.ItemsGBID) { case -363607620: // Common parts. - _owner.Toon.GameAccount.CraftItem1 -= ingr.Count; + _owner.Toon.GameAccount.CraftItem1 -= ingr.Count; break; case -1585802162: // Wizard Dust. - _owner.Toon.GameAccount.CraftItem2 -= ingr.Count; + _owner.Toon.GameAccount.CraftItem2 -= ingr.Count; break; case -605947593: // Blurred Crystal. - _owner.Toon.GameAccount.CraftItem3 -= ingr.Count; + _owner.Toon.GameAccount.CraftItem3 -= ingr.Count; break; } } @@ -1800,7 +1802,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem } //else if (!(recipeDefinition.Name.StartsWith("T12_") || recipeDefinition.Name.StartsWith("T11_"))) - reward.Attributes[GameAttributes.Item_Quality_Level] = Math.Min(recipe.ItemSpecifierData.AdditionalRandomAffixes + 2 , 9); + reward.Attributes[GameAttributes.Item_Quality_Level] = Math.Min(recipe.ItemSpecifierData.AdditionalRandomAffixes + 2, 9); if (reward.Attributes[GameAttributes.Item_Quality_Level] < 9) { AffixGenerator.Generate(reward, recipe.ItemSpecifierData.AdditionalRandomAffixes, true); @@ -1925,7 +1927,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem if (reward.Attributes[GameAttributes.ItemStackQuantityLo] > 0) _inventoryGrid.AddItem(reward); client.SendMessage(new CraftingResultsMessage { annItem = reward.GlobalID, GBIDItem = recipe.ItemSpecifierData.ItemGBId, IQL = reward.Attributes[GameAttributes.Item_Quality_Level] }); - + UpdateCurrencies(); } @@ -2228,7 +2230,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem return _equipment.GetOffHand(); } - + public void AddGoldAmount(int amount, bool immediately = true) { @@ -2318,7 +2320,12 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem D3.Items.CurrencyData craft7Data = D3.Items.CurrencyData.CreateBuilder().SetId(20).SetCount(playerAcc.BigPortalKey).Build(); // KeyStone Greater Rift. - D3.Items.CurrencyData[] consumables = {goldData, bloodShardData, platinumData, craft1Data, craft2Data, craft3Data, craft4Data, craft5Data, craft7Data, horadric1Data, horadric2Data, horadric3Data, horadric4Data, horadric5Data, craft8Data, craft9Data, craft10Data, craft11Data}; + D3.Items.CurrencyData[] consumables = { + goldData, bloodShardData, platinumData, craft1Data, + craft2Data, craft3Data, craft4Data, craft5Data, craft7Data, + horadric1Data, horadric2Data, horadric3Data, horadric4Data, + horadric5Data, craft8Data, craft9Data, craft10Data, craft11Data + }; foreach (var consumable in consumables) { @@ -2404,7 +2411,8 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem _owner.SetAttributesByParagon(); CheckWeapons(); _owner.Attributes.BroadcastChangedIfRevealed(); - Task.Delay(3000).ContinueWith((t) => { + Task.Delay(3000).ContinueWith((t) => + { try { _owner.CheckBonusSets(); @@ -2421,7 +2429,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem _inventoryGold.Owner = _owner; _inventoryGold.SetInventoryLocation((int)EquipmentSlotId.Gold, 0, 0); _inventoryGold.Attributes.SendChangedMessage(_owner.InGameClient); - + //this.inventoryPotion = ItemGenerator.CreateItem(this._owner, ItemGenerator.GetItemDefinition(DiIiS_NA.Core.Helpers.Hash.StringHashHelper.HashItemName("HealthPotionBottomless"))); //this.inventoryPotion.Owner = _owner; //this.inventoryPotion.SetInventoryLocation((int)EquipmentSlotId.Inventory, 0, 0); diff --git a/src/GAM/1xx_AffixList.gam b/src/GAM/1xx_AffixList.gam new file mode 100644 index 0000000..d46cdd7 Binary files /dev/null and b/src/GAM/1xx_AffixList.gam differ diff --git a/src/GAM/1xx_AffixList.json b/src/GAM/1xx_AffixList.json new file mode 100644 index 0000000..8f536a7 --- /dev/null +++ b/src/GAM/1xx_AffixList.json @@ -0,0 +1,604 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 306532, + "BalanceType": 8, + "I0": 1655929658, + "I1": 0 + }, + "Items": [ + { + "Hash": -1292859639, + "Name": "1xx_Damage 0.1 Legendary", + "GBID": 0, + "PAD": 0, + "SNOActor": 3, + "ItemTypesGBID": 100, + "Flags": 1, + "DyeType": 1, + "ItemLevel": 1, + "ItemAct": 1, + "AffixLevel": 1, + "BonusAffixes": 1, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 1215, + "RemoveGemCost": 9, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": -1, + "EnchantAffixCost": -1, + "EnchantAffixCostX1": -1, + "TransmogUnlockCrafterLevel": 130731, + "TransmogCost": 213613, + "SNOBaseItem": 2044719016, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": -1588776611, + "PortraitHPBar": -1, + "PortraitBanner": -1, + "PortraitFrame": -1, + "Labels": [ + -1, + -1, + -1, + -1, + -1 + ], + "Pad": "NaN", + "WeaponDamageMin": "NaN", + "WeaponDamageDelta": "NaN", + "DamageMinVariance": "NaN", + "DamageDeltaVariance": "NaN", + "AttacksPerSecond": "NaN", + "Armor": "NaN", + "ArmorDelta": "NaN", + "SNOSkill0": -1, + "SkillI0": -1, + "SNOSkill1": -1, + "SkillI1": -1, + "SNOSkill2": -1, + "SkillI2": -1, + "SNOSkill3": -1, + "SkillI3": 485534122, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 2746136, + "SNOParam": 40, + "Formula": [] + }, + { + "AttributeId": 2746176, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 2746176, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 2746176, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 807429479, + "SNOParam": 1277178414, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "TransmogsToGrant": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 3, + 100, + 1, + 1, + 1, + 1 + ], + "LegendaryFamily": 1, + "GemT": 1, + "CraftingTier": 1, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": 1, + "snoWorldPageOfFate1": 1, + "snoWorldPageOfFate2": 1, + "snoLevelAreaPageOfFatePortal": 25, + "EnchantAffixIngredientsCount": 50, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 2835, + "Count": 29 + }, + { + "ItemsGBID": 22, + "Count": 22 + }, + { + "ItemsGBID": 0, + "Count": -1 + }, + { + "ItemsGBID": -1, + "Count": -1 + }, + { + "ItemsGBID": 130731, + "Count": 213613 + }, + { + "ItemsGBID": 2044719016, + "Count": -1 + } + ], + "EnchantAffixIngredientsCountX1": -1, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1, + "Count": -1 + }, + { + "ItemsGBID": -1, + "Count": -1 + }, + { + "ItemsGBID": -1, + "Count": -1 + }, + { + "ItemsGBID": -1, + "Count": -1588776611 + }, + { + "ItemsGBID": -1, + "Count": -1 + }, + { + "ItemsGBID": -1, + "Count": -1 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": -1, + "VacuumPickup": -1, + "CostAlt2": 485534122, + "DynamicCraftCostMagic": -1, + "DynamicCraftCostRare": -1, + "DynamicCraftAffixCount": -1, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2019952886, + "Name": "������������������������������������������������������������������������������", + "GBID": 0, + "PAD": 0, + "SNOActor": 1601730609, + "ItemTypesGBID": 1634558276, + "Flags": 807429479, + "DyeType": 1277178670, + "ItemLevel": 1852139365, + "ItemAct": 2037539172, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 0, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 0, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": 0, + "SNOSet": 0, + "SNOComponentTreasureClass": 0, + "SNOComponentTreasureClassMagic": 0, + "SNOComponentTreasureClassRare": 0, + "SNOComponentTreasureClassLegend": 0, + "SNORareNamePrefixStringList": 0, + "SNORareNameSuffixStringList": 0, + "StartEffect": 0, + "EndEffect": 0, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 0, + "SkillI0": 0, + "SNOSkill1": 0, + "SkillI1": 0, + "SNOSkill2": 0, + "SkillI2": 0, + "SNOSkill3": 0, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 3, + "SNOParam": 100, + "Formula": [] + }, + { + "AttributeId": 1, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 1, + "SNOParam": 40, + "Formula": [] + }, + { + "AttributeId": 39, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 213613, + "SNOParam": 2044719016, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 2746216, + "RecipeToGrant": [ + 40, + -1, + -1, + 0, + 0, + 2746256, + 0, + -1, + -1, + 0 + ], + "TransmogsToGrant": [ + 0, + 2746256, + 0, + -1, + -1, + 0, + 0, + 2746256 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1601730609, + 1634558276, + 1226859879, + 0, + 0, + 0 + ], + "LegendaryFamily": 0, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": 0, + "snoWorldPageOfFate1": 0, + "snoWorldPageOfFate2": 0, + "snoLevelAreaPageOfFatePortal": 0, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 0, + "SeasonRequiredToDrop": 0, + "Attribute1": [ + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 0, + "JewelMaxRank": 0, + "MainEffect": 0, + "DateReleased": 0, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 0 + } + ] +} \ No newline at end of file diff --git a/src/GAM/ItemRequiredLevels.gam b/src/GAM/ItemRequiredLevels.gam new file mode 100644 index 0000000..8d691a6 Binary files /dev/null and b/src/GAM/ItemRequiredLevels.gam differ diff --git a/src/GAM/ItemSalvageLevels.gam b/src/GAM/ItemSalvageLevels.gam new file mode 100644 index 0000000..65d3b7c Binary files /dev/null and b/src/GAM/ItemSalvageLevels.gam differ diff --git a/src/GAM/ItemTypes.gam b/src/GAM/ItemTypes.gam new file mode 100644 index 0000000..7f7588b Binary files /dev/null and b/src/GAM/ItemTypes.gam differ diff --git a/src/GAM/ItemTypes.json b/src/GAM/ItemTypes.json new file mode 100644 index 0000000..377e8bc --- /dev/null +++ b/src/GAM/ItemTypes.json @@ -0,0 +1,604 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 19755, + "BalanceType": 1, + "I0": 934681424, + "I1": 0 + }, + "Items": [ + { + "Hash": -766798454, + "Name": "Weapon", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 0, + "Flags": 2, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": -1, + "AffixLevel": -1, + "BonusAffixes": -1, + "BonusMajorAffixes": -1, + "BonusMinorAffixes": -1, + "MaxSockets": -1, + "MaxStackSize": -1, + "Cost": -1, + "CostAlt": 1, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 1953724749, + "BaseDurability": 1467576933, + "DurabilityVariance": 1869635941, + "EnchantAffixCost": 4731246, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": 0, + "SNOSet": 0, + "SNOComponentTreasureClass": 0, + "SNOComponentTreasureClassMagic": 0, + "SNOComponentTreasureClassRare": 0, + "SNOComponentTreasureClassLegend": 0, + "SNORareNamePrefixStringList": 0, + "SNORareNameSuffixStringList": 0, + "StartEffect": 0, + "EndEffect": 0, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 0, + "SkillI0": 0, + "SNOSkill1": 0, + "SkillI1": 0, + "SNOSkill2": 0, + "SkillI2": 0, + "SNOSkill3": 0, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 485534122, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": 512, + "Formula": [] + }, + { + "AttributeId": 1953724749, + "SNOParam": 1467576933, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "TransmogsToGrant": [ + 0, + 485534122, + 0, + 0, + 0, + 1191680, + -1, + -1 + ], + "Massive0": [ + -1, + -1, + -1, + -1, + -1, + -1, + 1024, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 0, + 0, + 1701602637, + 101, + 0, + 0 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 0, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": 0, + "snoWorldPageOfFate1": 0, + "snoWorldPageOfFate2": 0, + "snoLevelAreaPageOfFatePortal": 0, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 0, + "SeasonRequiredToDrop": 0, + "Attribute1": [ + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 0, + "JewelMaxRank": 0, + "MainEffect": 485534122, + "DateReleased": 0, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": -1, + "DynamicCraftAffixCount": -1, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2020353786, + "Name": "��������������������\u0002", + "GBID": 0, + "PAD": 0, + "SNOActor": 0, + "ItemTypesGBID": 0, + "Flags": 0, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 133016072, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 0, + "IdentifyCost": 0, + "SellOverrideCost": -1, + "RemoveGemCost": -1, + "RequiredLevel": -1, + "CrafterRequiredLevel": -1, + "BaseDurability": -1, + "DurabilityVariance": -1, + "EnchantAffixCost": -1, + "EnchantAffixCostX1": -1, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 0, + "SNOBaseItem": 0, + "SNOSet": 0, + "SNOComponentTreasureClass": 0, + "SNOComponentTreasureClassMagic": 1701733703, + "SNOComponentTreasureClassRare": 1399023986, + "SNOComponentTreasureClassLegend": 1735289207, + "SNORareNamePrefixStringList": 1885431127, + "SNORareNameSuffixStringList": 28271, + "StartEffect": 0, + "EndEffect": 0, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 0, + "SkillI0": 0, + "SNOSkill1": 0, + "SkillI1": 0, + "SNOSkill2": 0, + "SkillI2": 0, + "SNOSkill3": 0, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "TransmogsToGrant": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Massive0": [ + 0, + 0, + 0, + 1846932879, + 0, + 0, + 1, + 1273600, + 3 + ], + "LegendaryAffixFamily": [ + 4, + 21, + 22, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + -1, + 520, + 0, + 0, + 0, + 0 + ], + "I38": [ + 845510721, + 72, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 0, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": 0, + "snoWorldPageOfFate1": 0, + "snoWorldPageOfFate2": 0, + "snoLevelAreaPageOfFatePortal": 0, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 0, + "SeasonRequiredToDrop": 0, + "Attribute1": [ + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": 0, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 0, + "JewelMaxRank": 0, + "MainEffect": 0, + "DateReleased": 0, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 0 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Item_ArtTest.gam b/src/GAM/Item_ArtTest.gam new file mode 100644 index 0000000..5fbdc46 Binary files /dev/null and b/src/GAM/Item_ArtTest.gam differ diff --git a/src/GAM/Item_ArtTest.json b/src/GAM/Item_ArtTest.json new file mode 100644 index 0000000..9cf0b09 --- /dev/null +++ b/src/GAM/Item_ArtTest.json @@ -0,0 +1,104386 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 402453, + "BalanceType": 2, + "I0": -650795141, + "I1": 0 + }, + "Items": [ + { + "Hash": -384660481, + "Name": "Art_Test_Dagger_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -262576534, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -384660480, + "Name": "Art_Test_Dagger_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -262576534, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -384660479, + "Name": "Art_Test_Dagger_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -262576534, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -384660478, + "Name": "Art_Test_Dagger_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -262576534, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -384660477, + "Name": "Art_Test_Dagger_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -262576534, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 962696286, + "Name": "Art_Test_CeremonialDagger_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -199811863, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 962696287, + "Name": "Art_Test_CeremonialDagger_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -199811863, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 962696288, + "Name": "Art_Test_CeremonialDagger_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -199811863, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 962696289, + "Name": "Art_Test_CeremonialDagger_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -199811863, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 962696290, + "Name": "Art_Test_CeremonialDagger_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -199811863, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865916, + "Name": "Art_Test_Sword_1H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 454792, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865917, + "Name": "Art_Test_Sword_1H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 464147, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865918, + "Name": "Art_Test_Sword_1H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 466313, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865919, + "Name": "Art_Test_Sword_1H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467578, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865920, + "Name": "Art_Test_Sword_1H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467370, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865921, + "Name": "Art_Test_Sword_1H_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467394, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865922, + "Name": "Art_Test_Sword_1H_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 467579, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865923, + "Name": "Art_Test_Sword_1H_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 467580, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681865924, + "Name": "Art_Test_Sword_1H_9", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 140782159, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681901853, + "Name": "Art_Test_Sword_2H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1307049751, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681901854, + "Name": "Art_Test_Sword_2H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1307049751, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681901855, + "Name": "Art_Test_Sword_2H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1307049751, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681901856, + "Name": "Art_Test_Sword_2H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1307049751, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681901857, + "Name": "Art_Test_Sword_2H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1307049751, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158349067, + "Name": "Art_Test_Axe_1H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 109694, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158349068, + "Name": "Art_Test_Axe_1H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 109694, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158349069, + "Name": "Art_Test_Axe_1H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 109694, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158349070, + "Name": "Art_Test_Axe_1H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 109694, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158349071, + "Name": "Art_Test_Axe_1H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 109694, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158385004, + "Name": "Art_Test_Axe_2H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 119458520, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158385005, + "Name": "Art_Test_Axe_2H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 119458520, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158385006, + "Name": "Art_Test_Axe_2H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 119458520, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158385007, + "Name": "Art_Test_Axe_2H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 119458520, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 158385008, + "Name": "Art_Test_Axe_2H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 119458520, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358601405, + "Name": "Art_Test_Mace_1H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 403366, + "ItemTypesGBID": 4026134, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358601404, + "Name": "Art_Test_Mace_1H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 450124, + "ItemTypesGBID": 4026134, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358601403, + "Name": "Art_Test_Mace_1H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4026134, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358601402, + "Name": "Art_Test_Mace_1H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4026134, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358601401, + "Name": "Art_Test_Mace_1H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4026134, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358565468, + "Name": "Art_Test_Mace_2H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 89494384, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358565467, + "Name": "Art_Test_Mace_2H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 89494384, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358565466, + "Name": "Art_Test_Mace_2H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 89494384, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358565465, + "Name": "Art_Test_Mace_2H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 89494384, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358565464, + "Name": "Art_Test_Mace_2H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 89494384, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -389825947, + "Name": "Art_Test_Polearm_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1203595600, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -389825946, + "Name": "Art_Test_Polearm_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1203595600, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -389825945, + "Name": "Art_Test_Polearm_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1203595600, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -389825944, + "Name": "Art_Test_Polearm_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1203595600, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -389825943, + "Name": "Art_Test_Polearm_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1203595600, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 292090928, + "Name": "Art_Test_Spear_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 470273, + "ItemTypesGBID": 140519163, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 292090929, + "Name": "Art_Test_Spear_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 467598, + "ItemTypesGBID": 140519163, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 292090930, + "Name": "Art_Test_Spear_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 467599, + "ItemTypesGBID": 140519163, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 292090931, + "Name": "Art_Test_Spear_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467600, + "ItemTypesGBID": 140519163, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 292090932, + "Name": "Art_Test_Spear_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467594, + "ItemTypesGBID": 140519163, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1029183197, + "Name": "Art_Test_Bow_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 403608, + "ItemTypesGBID": 110504, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1029183198, + "Name": "Art_Test_Bow_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 110504, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1029183199, + "Name": "Art_Test_Bow_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 110504, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1029183200, + "Name": "Art_Test_Bow_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 110504, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1029183201, + "Name": "Art_Test_Bow_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 110504, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410659541, + "Name": "Art_Test_XBow_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395324, + "ItemTypesGBID": -1338851342, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410659542, + "Name": "Art_Test_XBow_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 395323, + "ItemTypesGBID": -1338851342, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410659543, + "Name": "Art_Test_XBow_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1338851342, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410659544, + "Name": "Art_Test_XBow_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1338851342, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410659545, + "Name": "Art_Test_XBow_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1338851342, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -180339696, + "Name": "Art_Test_HandXBow_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395303, + "ItemTypesGBID": 763102523, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -363388401, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -180339695, + "Name": "Art_Test_HandXBow_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 395304, + "ItemTypesGBID": 763102523, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -363388401, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -180339694, + "Name": "Art_Test_HandXBow_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 395305, + "ItemTypesGBID": 763102523, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -363388401, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -180339693, + "Name": "Art_Test_HandXBow_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 763102523, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -363388401, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -180339692, + "Name": "Art_Test_HandXBow_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 763102523, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -363388401, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999413953, + "Name": "Art_Test_Mighty_1H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678091, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999413952, + "Name": "Art_Test_Mighty_1H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678091, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999413951, + "Name": "Art_Test_Mighty_1H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678091, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999413950, + "Name": "Art_Test_Mighty_1H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678091, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999413949, + "Name": "Art_Test_Mighty_1H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678091, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999378016, + "Name": "Art_Test_Mighty_2H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 402773, + "ItemTypesGBID": -1488678058, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 329205162, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999378015, + "Name": "Art_Test_Mighty_2H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678058, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 329205162, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999378014, + "Name": "Art_Test_Mighty_2H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678058, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 329205162, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999378013, + "Name": "Art_Test_Mighty_2H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678058, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 329205162, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999378012, + "Name": "Art_Test_Mighty_2H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678058, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 329205162, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247386133, + "Name": "Art_Test_Fist_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395330, + "ItemTypesGBID": -2094596416, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247386132, + "Name": "Art_Test_Fist_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408775, + "ItemTypesGBID": -2094596416, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247386131, + "Name": "Art_Test_Fist_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 395332, + "ItemTypesGBID": -2094596416, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247386130, + "Name": "Art_Test_Fist_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 402499, + "ItemTypesGBID": -2094596416, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247386129, + "Name": "Art_Test_Fist_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -2094596416, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450778504, + "Name": "Art_Test_CombatStaff_2H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395125, + "ItemTypesGBID": -1620551894, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450778503, + "Name": "Art_Test_CombatStaff_2H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1620551894, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450778502, + "Name": "Art_Test_CombatStaff_2H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1620551894, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450778501, + "Name": "Art_Test_CombatStaff_2H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1620551894, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450778500, + "Name": "Art_Test_CombatStaff_2H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1620551894, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055433, + "Name": "Art_Test_Staff_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 467587, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055434, + "Name": "Art_Test_Staff_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 467595, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055435, + "Name": "Art_Test_Staff_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 467596, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055436, + "Name": "Art_Test_Staff_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467597, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055437, + "Name": "Art_Test_Staff_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467598, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055438, + "Name": "Art_Test_Staff_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467599, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055439, + "Name": "Art_Test_Staff_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 467600, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055440, + "Name": "Art_Test_Staff_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 467594, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444055441, + "Name": "Art_Test_Staff_9", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 140658708, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 408231071, + "Name": "Art_Test_Wand_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4385866, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 408231072, + "Name": "Art_Test_Wand_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4385866, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 408231073, + "Name": "Art_Test_Wand_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4385866, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 408231074, + "Name": "Art_Test_Wand_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4385866, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 408231075, + "Name": "Art_Test_Wand_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4385866, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 33348266, + "Name": "Art_Test_Mojo_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395198, + "ItemTypesGBID": 4041621, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 33348267, + "Name": "Art_Test_Mojo_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 395199, + "ItemTypesGBID": 4041621, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 33348268, + "Name": "Art_Test_Mojo_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 395200, + "ItemTypesGBID": 4041621, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 33348269, + "Name": "Art_Test_Mojo_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4041621, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 33348270, + "Name": "Art_Test_Mojo_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4041621, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1044685112, + "Name": "Art_Test_Orb_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 464684, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1044685113, + "Name": "Art_Test_Orb_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 462864, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1044685114, + "Name": "Art_Test_Orb_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 462866, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1044685115, + "Name": "Art_Test_Orb_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 466047, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1044685116, + "Name": "Art_Test_Orb_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467582, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1044685117, + "Name": "Art_Test_Orb_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 462249, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1044685118, + "Name": "Art_Test_Orb_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 462250, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1044685119, + "Name": "Art_Test_Orb_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 467581, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 270279342, + "Name": "Art_Test_Talisman_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 462866, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 270279343, + "Name": "Art_Test_Talisman_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 462864, + "ItemTypesGBID": 124739, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240067759, + "Name": "Art_Test_Quiver_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 269990204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240067758, + "Name": "Art_Test_Quiver_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 269990204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240067757, + "Name": "Art_Test_Quiver_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 269990204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240067756, + "Name": "Art_Test_Quiver_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 269990204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240067755, + "Name": "Art_Test_Quiver_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 269990204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -531666482, + "Name": "Art_Test_Shield_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 445356, + "ItemTypesGBID": 332825721, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -531666481, + "Name": "Art_Test_Shield_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 332825721, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -531666480, + "Name": "Art_Test_Shield_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 332825721, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -531666479, + "Name": "Art_Test_Shield_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 332825721, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -531666478, + "Name": "Art_Test_Shield_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 332825721, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118213, + "Name": "Art_Test_Helm_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 484395, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118212, + "Name": "Art_Test_Helm_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 484414, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118211, + "Name": "Art_Test_Helm_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 484216, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118210, + "Name": "Art_Test_Helm_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467603, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118209, + "Name": "Art_Test_Helm_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467604, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118208, + "Name": "Art_Test_Helm_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467605, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118207, + "Name": "Art_Test_Helm_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 414753, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118206, + "Name": "Art_Test_Helm_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 414930, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -174118205, + "Name": "Art_Test_Helm_9", + "GBID": 0, + "PAD": 0, + "SNOActor": 428455, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933685, + "Name": "Art_Test_Helm_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 426784, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933684, + "Name": "Art_Test_Helm_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 429266, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933683, + "Name": "Art_Test_Helm_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 434736, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933682, + "Name": "Art_Test_Helm_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 439183, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933681, + "Name": "Art_Test_Helm_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 440054, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933680, + "Name": "Art_Test_Helm_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 443602, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933679, + "Name": "Art_Test_Helm_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 449959, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933678, + "Name": "Art_Test_Helm_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 450187, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933677, + "Name": "Art_Test_Helm_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 455405, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933676, + "Name": "Art_Test_Helm_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 460892, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933652, + "Name": "Art_Test_Helm_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 478928, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450933651, + "Name": "Art_Test_Helm_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 484903, + "ItemTypesGBID": 3851110, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 273768390, + "Name": "Art_Test_Gloves_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 484394, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 273768391, + "Name": "Art_Test_Gloves_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 484412, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 273768392, + "Name": "Art_Test_Gloves_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 484213, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 273768393, + "Name": "Art_Test_Gloves_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467352, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 273768394, + "Name": "Art_Test_Gloves_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467572, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 273768395, + "Name": "Art_Test_Gloves_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 467573, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 273768396, + "Name": "Art_Test_Gloves_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 408877, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 273768397, + "Name": "Art_Test_Gloves_9", + "GBID": 0, + "PAD": 0, + "SNOActor": 415190, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444422293, + "Name": "Art_Test_Gloves_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 415051, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444422294, + "Name": "Art_Test_Gloves_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 205633, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444422295, + "Name": "Art_Test_Gloves_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 441196, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444422296, + "Name": "Art_Test_Gloves_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 460920, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444422297, + "Name": "Art_Test_Gloves_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 467352, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444422298, + "Name": "Art_Test_Gloves_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 478906, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 444422299, + "Name": "Art_Test_Gloves_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 484904, + "ItemTypesGBID": -131821392, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620356, + "Name": "Art_Test_Boots_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 484392, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620355, + "Name": "Art_Test_Boots_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 484410, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620354, + "Name": "Art_Test_Boots_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 484207, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620353, + "Name": "Art_Test_Boots_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467350, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620352, + "Name": "Art_Test_Boots_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467564, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620351, + "Name": "Art_Test_Boots_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467565, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620350, + "Name": "Art_Test_Boots_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 408866, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620349, + "Name": "Art_Test_Boots_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 408867, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214620348, + "Name": "Art_Test_Boots_9", + "GBID": 0, + "PAD": 0, + "SNOActor": 415050, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1507462892, + "Name": "Art_Test_Boots_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 415264, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1507462893, + "Name": "Art_Test_Boots_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 441195, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1507462894, + "Name": "Art_Test_Boots_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 442731, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1507462895, + "Name": "Art_Test_Boots_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 460917, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1507462896, + "Name": "Art_Test_Boots_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 467350, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1507462897, + "Name": "Art_Test_Boots_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 478905, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1507462898, + "Name": "Art_Test_Boots_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 484908, + "ItemTypesGBID": 120334087, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -408922948, + "Name": "Art_Test_Belt_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -948083356, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -408922947, + "Name": "Art_Test_Belt_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -948083356, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -408922946, + "Name": "Art_Test_Belt_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -948083356, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -408922945, + "Name": "Art_Test_Belt_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -948083356, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -408922944, + "Name": "Art_Test_Belt_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -948083356, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 518362436, + "Name": "Art_Test_Bracer_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1999984446, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 518362437, + "Name": "Art_Test_Bracer_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1999984446, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 518362438, + "Name": "Art_Test_Bracer_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1999984446, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 518362439, + "Name": "Art_Test_Bracer_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1999984446, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 518362440, + "Name": "Art_Test_Bracer_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1999984446, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005804, + "Name": "Art_Test_Chest_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 484393, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005805, + "Name": "Art_Test_Chest_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 484411, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005806, + "Name": "Art_Test_Chest_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 484210, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005807, + "Name": "Art_Test_Chest_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467351, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005808, + "Name": "Art_Test_Chest_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467568, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005809, + "Name": "Art_Test_Chest_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467569, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005810, + "Name": "Art_Test_Chest_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 408871, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005811, + "Name": "Art_Test_Chest_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 408872, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 791005812, + "Name": "Art_Test_Chest_9", + "GBID": 0, + "PAD": 0, + "SNOActor": 429167, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 333387804, + "Name": "Art_Test_Chest_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 441191, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 333387805, + "Name": "Art_Test_Chest_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 442474, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 333387806, + "Name": "Art_Test_Chest_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 460919, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 333387807, + "Name": "Art_Test_Chest_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 467351, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 333387808, + "Name": "Art_Test_Chest_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 478903, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 333387809, + "Name": "Art_Test_Chest_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 484907, + "ItemTypesGBID": -1028103400, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980603, + "Name": "Art_Test_Pants_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 484396, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980604, + "Name": "Art_Test_Pants_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 484413, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980605, + "Name": "Art_Test_Pants_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 484219, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980606, + "Name": "Art_Test_Pants_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467353, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980607, + "Name": "Art_Test_Pants_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467576, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980608, + "Name": "Art_Test_Pants_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467577, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980609, + "Name": "Art_Test_Pants_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 408881, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980610, + "Name": "Art_Test_Pants_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 408882, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 136980611, + "Name": "Art_Test_Pants_9", + "GBID": 0, + "PAD": 0, + "SNOActor": 415282, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392651, + "Name": "Art_Test_Pants_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 205645, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392652, + "Name": "Art_Test_Pants_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 415049, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392653, + "Name": "Art_Test_Pants_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 415198, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392654, + "Name": "Art_Test_Pants_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 205647, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392655, + "Name": "Art_Test_Pants_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 429075, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392656, + "Name": "Art_Test_Pants_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 441194, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392657, + "Name": "Art_Test_Pants_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 442732, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392658, + "Name": "Art_Test_Pants_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 460918, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392659, + "Name": "Art_Test_Pants_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 467353, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392660, + "Name": "Art_Test_Pants_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 478904, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 225392684, + "Name": "Art_Test_Pants_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 484906, + "ItemTypesGBID": 3994699, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653221, + "Name": "Art_Test_Shoulder_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 484397, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653220, + "Name": "Art_Test_Shoulder_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 484415, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653219, + "Name": "Art_Test_Shoulder_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 484222, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653218, + "Name": "Art_Test_Shoulder_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467608, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653217, + "Name": "Art_Test_Shoulder_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467609, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653216, + "Name": "Art_Test_Shoulder_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467610, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653215, + "Name": "Art_Test_Shoulder_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 414760, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653214, + "Name": "Art_Test_Shoulder_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 414925, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1962653213, + "Name": "Art_Test_Shoulder_9", + "GBID": 0, + "PAD": 0, + "SNOActor": 428444, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046805, + "Name": "Art_Test_Shoulder_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 426817, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046804, + "Name": "Art_Test_Shoulder_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 429681, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046803, + "Name": "Art_Test_Shoulder_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 434757, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046802, + "Name": "Art_Test_Shoulder_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 439186, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046801, + "Name": "Art_Test_Shoulder_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 440061, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046800, + "Name": "Art_Test_Shoulder_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 440420, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046799, + "Name": "Art_Test_Shoulder_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 444527, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046798, + "Name": "Art_Test_Shoulder_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 460923, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046797, + "Name": "Art_Test_Shoulder_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 478929, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343046796, + "Name": "Art_Test_Shoulder_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 484905, + "ItemTypesGBID": -940830407, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1666282522, + "Name": "Art_Test_SpiritStone_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 576647032, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -242895467, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1666282523, + "Name": "Art_Test_SpiritStone_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 576647032, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -242895467, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1666282524, + "Name": "Art_Test_SpiritStone_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 576647032, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -242895467, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1666282525, + "Name": "Art_Test_SpiritStone_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 576647032, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -242895467, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279238537, + "Name": "Art_Test_VoodooMask_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 441178, + "ItemTypesGBID": -333341566, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279238536, + "Name": "Art_Test_VoodooMask_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -333341566, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279238535, + "Name": "Art_Test_VoodooMask_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -333341566, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279238534, + "Name": "Art_Test_VoodooMask_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -333341566, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279238533, + "Name": "Art_Test_VoodooMask_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -333341566, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1560729539, + "Name": "Art_Test_WizardHat_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1499089042, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1560729540, + "Name": "Art_Test_WizardHat_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1499089042, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1560729541, + "Name": "Art_Test_WizardHat_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1499089042, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1560729542, + "Name": "Art_Test_WizardHat_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1499089042, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1560729543, + "Name": "Art_Test_WizardHat_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1499089042, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 958749919, + "Name": "Art_Test_Cloak_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 121411562, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 958749920, + "Name": "Art_Test_Cloak_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 121411562, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 958749921, + "Name": "Art_Test_Cloak_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 121411562, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 958749922, + "Name": "Art_Test_Cloak_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 121411562, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 958749923, + "Name": "Art_Test_Cloak_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 121411562, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1019619021, + "Name": "Art_Test_BarbBelt_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -479768568, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1019619020, + "Name": "Art_Test_BarbBelt_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -479768568, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1019619019, + "Name": "Art_Test_BarbBelt_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -479768568, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1019619018, + "Name": "Art_Test_BarbBelt_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -479768568, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1019619017, + "Name": "Art_Test_BarbBelt_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -479768568, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -519396803, + "Name": "Art_Test_Amulet_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -365243096, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -519396802, + "Name": "Art_Test_Amulet_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -365243096, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -519396801, + "Name": "Art_Test_Amulet_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -365243096, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -519396800, + "Name": "Art_Test_Amulet_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -365243096, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -519396799, + "Name": "Art_Test_Amulet_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -365243096, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 222044741, + "Name": "Art_Test_Ring_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4214896, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 222044742, + "Name": "Art_Test_Ring_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4214896, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 222044743, + "Name": "Art_Test_Ring_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4214896, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 222044744, + "Name": "Art_Test_Ring_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4214896, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 222044745, + "Name": "Art_Test_Ring_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 4214896, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -267000360, + "Name": "Art_Test_CruShield_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395192, + "ItemTypesGBID": 602099538, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -267000359, + "Name": "Art_Test_CruShield_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 395193, + "ItemTypesGBID": 602099538, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -267000358, + "Name": "Art_Test_CruShield_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 405429, + "ItemTypesGBID": 602099538, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -267000357, + "Name": "Art_Test_CruShield_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 405514, + "ItemTypesGBID": 602099538, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -267000356, + "Name": "Art_Test_CruShield_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 602099538, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600093963, + "Name": "Art_Test_Flail_1H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395210, + "ItemTypesGBID": -1363671135, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600093962, + "Name": "Art_Test_Flail_1H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 424257, + "ItemTypesGBID": -1363671135, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600093961, + "Name": "Art_Test_Flail_1H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1363671135, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600093960, + "Name": "Art_Test_Flail_1H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1363671135, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600093959, + "Name": "Art_Test_Flail_1H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1363671135, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600058026, + "Name": "Art_Test_Flail_2H_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395227, + "ItemTypesGBID": -1363671102, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600058025, + "Name": "Art_Test_Flail_2H_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 395228, + "ItemTypesGBID": -1363671102, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600058024, + "Name": "Art_Test_Flail_2H_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1363671102, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600058023, + "Name": "Art_Test_Flail_2H_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1363671102, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1600058022, + "Name": "Art_Test_Flail_2H_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1363671102, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937757, + "Name": "Art_Test_Wings_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 198277, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937758, + "Name": "Art_Test_Wings_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 431028, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937759, + "Name": "Art_Test_Wings_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 435203, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937760, + "Name": "Art_Test_Wings_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 435242, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937761, + "Name": "Art_Test_Wings_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 436082, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937762, + "Name": "Art_Test_Wings_6", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 436200, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937763, + "Name": "Art_Test_Wings_7", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 436233, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937764, + "Name": "Art_Test_Wings_8", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 437346, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899937765, + "Name": "Art_Test_Wings_9", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 437592, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825043, + "Name": "Art_Test_Wings_10", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 442388, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825042, + "Name": "Art_Test_Wings_11", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 442801, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825041, + "Name": "Art_Test_Wings_12", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 443364, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825040, + "Name": "Art_Test_Wings_13", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 444468, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825039, + "Name": "Art_Test_Wings_14", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 445989, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825038, + "Name": "Art_Test_Wings_15", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446797, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825037, + "Name": "Art_Test_Wings_16", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446803, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825036, + "Name": "Art_Test_Wings_17", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446835, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825035, + "Name": "Art_Test_Wings_18", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446867, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825034, + "Name": "Art_Test_Wings_19", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446901, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825010, + "Name": "Art_Test_Wings_20", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446932, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825009, + "Name": "Art_Test_Wings_21", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449274, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825008, + "Name": "Art_Test_Wings_22", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449608, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825007, + "Name": "Art_Test_Wings_23", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449683, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -366825006, + "Name": "Art_Test_Wings_24", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1081301157, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 483985, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423454, + "Name": "Art_Test_Pet_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430903, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423455, + "Name": "Art_Test_Pet_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430906, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423456, + "Name": "Art_Test_Pet_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430908, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423457, + "Name": "Art_Test_Pet_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430910, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423458, + "Name": "Art_Test_Pet_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 437119, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423459, + "Name": "Art_Test_Pet_6", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430905, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423460, + "Name": "Art_Test_Pet_7", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 433063, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423461, + "Name": "Art_Test_Pet_8", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 436532, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1045423462, + "Name": "Art_Test_Pet_9", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 436534, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139235662, + "Name": "Art_Test_Pet_10", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 436961, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139235663, + "Name": "Art_Test_Pet_11", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 437807, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139235664, + "Name": "Art_Test_Pet_12", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 439337, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139235665, + "Name": "Art_Test_Pet_13", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 444316, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139235666, + "Name": "Art_Test_Pet_14", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 445705, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139235667, + "Name": "Art_Test_Pet_15", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 445870, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139235668, + "Name": "Art_Test_Pet_16", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 447255, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139235669, + "Name": "Art_Test_Pet_17", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1269690848, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 988742338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 449221, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524937, + "Name": "Art_Test_Pennant_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 430771, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524938, + "Name": "Art_Test_Pennant_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 430810, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524939, + "Name": "Art_Test_Pennant_3", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 430843, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524940, + "Name": "Art_Test_Pennant_4", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 431332, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524941, + "Name": "Art_Test_Pennant_5", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 431644, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524942, + "Name": "Art_Test_Pennant_6", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 375410, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524943, + "Name": "Art_Test_Pennant_7", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 434544, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524944, + "Name": "Art_Test_Pennant_8", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 434579, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1562524945, + "Name": "Art_Test_Pennant_9", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 439533, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715417, + "Name": "Art_Test_Pennant_10", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 440807, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715418, + "Name": "Art_Test_Pennant_11", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 440337, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715419, + "Name": "Art_Test_Pennant_12", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715420, + "Name": "Art_Test_Pennant_13", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715421, + "Name": "Art_Test_Pennant_14", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 445419, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715422, + "Name": "Art_Test_Pennant_15", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446254, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715423, + "Name": "Art_Test_Pennant_16", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448876, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715424, + "Name": "Art_Test_Pennant_17", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448877, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715425, + "Name": "Art_Test_Pennant_18", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448878, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715426, + "Name": "Art_Test_Pennant_19", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448887, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715450, + "Name": "Art_Test_Pennant_20", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448918, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23715451, + "Name": "Art_Test_Pennant_21", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -937743655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448949, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_Armor.gam b/src/GAM/Items_Armor.gam new file mode 100644 index 0000000..4f646ea Binary files /dev/null and b/src/GAM/Items_Armor.gam differ diff --git a/src/GAM/Items_Legendary.gam b/src/GAM/Items_Legendary.gam new file mode 100644 index 0000000..fc2d994 Binary files /dev/null and b/src/GAM/Items_Legendary.gam differ diff --git a/src/GAM/Items_Legendary.json b/src/GAM/Items_Legendary.json new file mode 100644 index 0000000..5cb84a7 --- /dev/null +++ b/src/GAM/Items_Legendary.json @@ -0,0 +1,879370 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 170627, + "BalanceType": 2, + "I0": 1485009451, + "I1": 0 + }, + "Items": [ + { + "Hash": 1705740658, + "Name": "Unique_Dagger_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 195174, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3200, + "CostAlt": 5, + "IdentifyCost": 42, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 12, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1751678268, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 14, + 14, + 14, + 14, + 14, + 14 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1705740662, + "Name": "Unique_Dagger_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 221313, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303414213, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1133, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1177564965, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1705740657, + "Name": "Unique_Dagger_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 192579, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413123, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 234326220, + 1978556068, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 44, + 44, + 56, + 56, + 56 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1705740661, + "Name": "Unique_Dagger_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 195655, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413120, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 1, + 1, + 1, + 1, + 1, + 1 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1705740688, + "Name": "Unique_Dagger_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 219329, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413119, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + -553879927, + 125900958, + -846894066, + 810509126, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 55, + 62 + ], + "I38": [ + 1, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574203695, + "Name": "Unique_CeremonialDagger_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 193433, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 125900958, + 847944519, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574203692, + "Name": "Unique_CeremonialDagger_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 192540, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6000, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 26, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635269580, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 28, + 28, + 28, + 28, + 28, + 28 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574203694, + "Name": "Unique_CeremonialDagger_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 222978, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635268492, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1604369412, + 59953577, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574203697, + "Name": "Unique_CeremonialDagger_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 196250, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267405, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 234326220, + -553879927, + -493913099, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574203696, + "Name": "Unique_CeremonialDagger_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 209246, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267402, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 4029372, + 1350281776, + 949340468, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 48, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574203690, + "Name": "Unique_CeremonialDagger_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 195370, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267401, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1461069734, + 982068194, + -493913099, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 55, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096940, + "Name": "Unique_Sword_1H_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 115140, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5200, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 22, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + 1616088365, + -976182127, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 24, + 21, + 24, + 24, + 24, + 24 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096978, + "Name": "Unique_Sword_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 270978, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8200, + "CostAlt": 5, + "IdentifyCost": 117, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 38, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937830, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1751678268, + 234326220, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 39, + 39, + 39, + 39, + 39, + 39 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096946, + "Name": "Unique_Sword_1H_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 189552, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 44, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9200, + "CostAlt": 5, + "IdentifyCost": 132, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 43, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937828, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 158, + "SNOParam": 5, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1796946852, + -553879927, + -1461069734, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 44, + 44, + 44, + 44, + 44, + 44 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096977, + "Name": "Unique_Sword_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 194481, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937827, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + 125900958, + -553879927, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096943, + "Name": "Unique_Sword_1H_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 185397, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936740, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1461069734, + 1978556068, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096976, + "Name": "Unique_Sword_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 182347, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + 143839492, + 1350281776, + 942999935, + 1620834581, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096938, + "Name": "Unique_Sword_1H_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 270977, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936738, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096973, + "Name": "Unique_Sword_1H_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 115141, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936738, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 143839492, + 1616088365, + 341569830, + 1620834581, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096945, + "Name": "Unique_Sword_1H_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 192511, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936737, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -812845450, + 40042201, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961585, + "Name": "Unique_Sword_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 59665, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1616088365, + 2044719016, + -1823379498, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961552, + "Name": "Unique_Sword_2H_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 198960, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 28, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231803523, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + 338507747, + 1589045967, + -1, + -1 + ], + "MaxAffixLevel": [ + 30, + 30, + 30, + 30, + 30, + 30 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961583, + "Name": "Unique_Sword_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 181511, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8000, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 37, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231802438, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 234326220, + -1751678268, + 121749883, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 38, + 38, + 38, + 38, + 38, + 38 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961553, + "Name": "Unique_Sword_2H_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 270979, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10400, + "CostAlt": 5, + "IdentifyCost": 150, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 49, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231802434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 338507747, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 50, + 50, + 50, + 50, + 50, + 50 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961580, + "Name": "Unique_Sword_2H_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 184184, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801349, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 1791554648, + 59953577, + 341569863, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961579, + "Name": "Unique_Sword_2H_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 184190, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801348, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 139520518, + 1808801862, + 810509126, + -1461069734, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 53, + 59 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961554, + "Name": "Unique_Sword_2H_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 184187, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801347, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 143839492, + -529329636, + 1620834581, + -1461069734, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961586, + "Name": "Unique_Sword_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 190360, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801347, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 1616088365, + 40042201, + 2044719016, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 61, + 60, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961584, + "Name": "Unique_Sword_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 181495, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -1751678268, + 2044719016, + 810509126, + 112679, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 337651582, + "Name": "Unique_Axe_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 116386, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1177564965, + 810509126, + -502510711, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 337651586, + "Name": "Unique_Axe_1H_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 181484, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661412395, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1796946852, + -1461069734, + -1648110199, + 512004501, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 337651583, + "Name": "Unique_Axe_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 116387, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661413481, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 337651580, + "Name": "Unique_Axe_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 116388, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10200, + "CostAlt": 5, + "IdentifyCost": 147, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 48, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661413483, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1616088365, + -1823379498, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 49, + 49, + 49, + 49, + 49, + 49 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 337651585, + "Name": "Unique_Axe_1H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 189973, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414570, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 359993717, + 1616088365, + -1256761000, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 337651584, + "Name": "Unique_Axe_1H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 116389, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414568, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + -1751678268, + 2044719016, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 54, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 376786975, + "Name": "Unique_Axe_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 186560, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + 4029372, + 139520518, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 376786973, + "Name": "Unique_Axe_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 186494, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7600, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700548872, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + -1, + 1616088365, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 36, + 36, + 36, + 36, + 36, + 36 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 376787006, + "Name": "Unique_Axe_2H_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 191065, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549962, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1461069734, + 982068194, + 40042201, + -1, + -1 + ], + "MaxAffixLevel": [ + 57, + 51, + 57, + 57, + 57, + 57 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 376787005, + "Name": "Unique_Axe_2H_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 6329, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549963, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 376786981, + "Name": "Unique_Axe_2H_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 192887, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549963, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -1751678268, + 112679, + 121749883, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076843, + "Name": "Unique_Mace_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 188185, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5600, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 24, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 143839492, + 1791554648, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 26, + 26, + 26, + 26, + 26, + 26 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076844, + "Name": "Unique_Mace_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 188181, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025089, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + -553879927, + 1616088365, + 121749850, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076840, + "Name": "Unique_Mace_1H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 188169, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025087, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 1616088365, + 341569830, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076838, + "Name": "Unique_Mace_1H_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 188189, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025085, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 125900958, + 1978556068, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076842, + "Name": "Unique_Mace_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 102665, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025083, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + -1256761000, + 341569830, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076837, + "Name": "Unique_Mace_1H_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 188158, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023997, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 1616088365, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076836, + "Name": "Unique_Mace_1H_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 188177, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023996, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076811, + "Name": "Unique_Mace_1H_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 188173, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023995, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1751678268, + 1350281776, + 2044719016, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 55, + 62, + 55, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1136941449, + "Name": "Unique_Mace_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 99227, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1136941451, + "Name": "Unique_Mace_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 59633, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616890781, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -812845450, + 359993717, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1136941417, + "Name": "Unique_Mace_2H_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 191584, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616889696, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 80228221, + 1616088365, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1136941419, + "Name": "Unique_Mace_2H_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 190840, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616889693, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + 112679, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 38, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1136941446, + "Name": "Unique_Mace_2H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 190868, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888607, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1136941450, + "Name": "Unique_Mace_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 190866, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888605, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 512004501, + 1978556068, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1136941443, + "Name": "Unique_Mace_2H_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 197717, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888603, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + 1791554648, + 810509126, + 186163290, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 55, + 55, + 49, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819864713, + "Name": "Unique_Polearm_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 196570, + "ItemTypesGBID": -1203595600, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 121749883, + 2044719016, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819864711, + "Name": "Unique_Polearm_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 191570, + "ItemTypesGBID": -1203595600, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7600, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337762431, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 143839492, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 36, + 36, + 36, + 36, + 36, + 36 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819864712, + "Name": "Unique_Polearm_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 192569, + "ItemTypesGBID": -1203595600, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337761339, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -1604369412, + 1616088365, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819864714, + "Name": "Unique_Polearm_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 195491, + "ItemTypesGBID": -1203595600, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337761336, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 80228221, + 1350281776, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 62, + 55, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1942131652, + "Name": "Unique_Spear_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 197095, + "ItemTypesGBID": 140519163, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4000, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 16, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + 1791554648, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 18, + 18, + 18, + 18, + 18, + 18 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1942131649, + "Name": "Unique_Spear_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 191446, + "ItemTypesGBID": 140519163, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101311666, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1942131650, + "Name": "Unique_Spear_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 196638, + "ItemTypesGBID": 140519163, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101310579, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1616088365, + 4029372, + -1604369412, + -1802869037, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1942131651, + "Name": "Unique_Spear_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 194241, + "ItemTypesGBID": 140519163, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101310576, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -529329636, + -2133546597, + 40042201, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391120242, + "Name": "Unique_Bow_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 175580, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091504071, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1978556068, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391120244, + "Name": "Unique_Bow_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 220654, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091504069, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 22, + 22, + 22, + 22, + 22, + 22 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391120245, + "Name": "Unique_Bow_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 221938, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1604369412, + 2044719016, + 696647397, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391120238, + "Name": "Unique_Bow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091502980, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + 1616088365, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391120275, + "Name": "Unique_Bow_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 175582, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501894, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + -553879927, + -939099115, + 125900958, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391120270, + "Name": "Unique_Bow_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 221893, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501891, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391120246, + "Name": "Unique_Bow_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 192602, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501890, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -1311456156, + 810509126, + 2128734586, + -1 + ], + "MaxAffixLevel": [ + 49, + 62, + 62, + 55, + 62, + 62 + ], + "I38": [ + 1, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1239474805, + "Name": "Unique_XBow_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 98163, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 4, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1239474810, + "Name": "Unique_XBow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 222286, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5600, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 24, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181031815, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1751678268, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 26, + 26, + 26, + 26, + 26, + 26 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1239474777, + "Name": "Unique_XBow_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 194219, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8800, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 41, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181032902, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 810509126, + -812845450, + -98752578, + -1 + ], + "MaxAffixLevel": [ + 37, + 42, + 33, + 42, + 42, + 42 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1239474807, + "Name": "Unique_XBow_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 194957, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033989, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1239474776, + "Name": "Unique_XBow_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 204874, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033991, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 234326220, + 1438797838, + -926180037, + -1, + -1 + ], + "MaxAffixLevel": [ + 42, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1239474809, + "Name": "Unique_XBow_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 192836, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033992, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -1461069734, + 810509126, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 48, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1239474808, + "Name": "Unique_XBow_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 221760, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033993, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -1751678268, + 234326220, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 49, + 62, + 62, + 49, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444729, + "Name": "Unique_HandXBow_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 196409, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 99, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 32, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363390580, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1350281776, + 810509126, + -923861827, + -1, + -1 + ], + "MaxAffixLevel": [ + 33, + 33, + 33, + 33, + 33, + 33 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444730, + "Name": "Unique_HandXBow_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 195078, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8800, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 41, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363390577, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 42, + 42, + 42, + 42, + 42, + 42 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444731, + "Name": "Unique_HandXBow_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 192467, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1616088365, + 1951651227, + 112679, + -923861827, + -1 + ], + "MaxAffixLevel": [ + 57, + 39, + 57, + 39, + 57, + 57 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444732, + "Name": "Unique_HandXBow_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 192528, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389488, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 810509126, + -1461069734, + 341569830, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444701, + "Name": "Unique_HandXBow_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 225181, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389486, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 2128734586, + 810509126, + -1329434470, + -1 + ], + "MaxAffixLevel": [ + 61, + 57, + 61, + 57, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128051435, + "Name": "Unique_Mighty_1H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 192105, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + -812845450, + -98752611, + -502510711, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128051406, + "Name": "Unique_Mighty_1H_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 193486, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 144, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 46, + "CrafterRequiredLevel": 47, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290067592, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 810509126, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 48, + 48, + 24, + 48, + 48, + 48 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128051440, + "Name": "Unique_Mighty_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 192705, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11400, + "CostAlt": 5, + "IdentifyCost": 165, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068679, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 55, + 55, + 55, + 55, + 55 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128051436, + "Name": "Unique_Mighty_1H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 193611, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068681, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1096375804, + 1350281776, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 62, + 62, + 61, + 62, + 62 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -88916013, + "Name": "Unique_Mighty_2H_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 196308, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329201897, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -88916044, + "Name": "Unique_Mighty_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 195690, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7800, + "CostAlt": 5, + "IdentifyCost": 111, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 36, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329202983, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -812845450, + 699281021, + -1, + -1 + ], + "MaxAffixLevel": [ + 37, + 37, + 37, + 37, + 37, + 37 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -88916047, + "Name": "Unique_Mighty_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193657, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329204072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 1350281776, + 143839492, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 50, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -88916042, + "Name": "Unique_Mighty_2H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 195138, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329204074, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -394192022, + -1461069734, + -1096375804, + 359993717, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 55, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675357, + "Name": "Unique_Fist_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 175939, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 7, + "CrafterRequiredLevel": 8, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236604969, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 1350281776, + 143839492, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 10, + 10, + 10, + 10 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675362, + "Name": "Unique_Fist_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 196472, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 234326220, + -1976254587, + 21694593, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675358, + "Name": "Unique_Fist_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 145850, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6000, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 26, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236604971, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1808801829, + -553879927, + 1616088365, + -1625420711, + -1, + -1 + ], + "MaxAffixLevel": [ + 28, + 28, + 28, + 28, + 28, + 28 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675329, + "Name": "Unique_Fist_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 130557, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8000, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 37, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236606059, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 1350281776, + 40042201, + -1588784387, + -1, + -1 + ], + "MaxAffixLevel": [ + 38, + 34, + 38, + 38, + 38, + 38 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675330, + "Name": "Unique_Fist_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 175938, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10200, + "CostAlt": 5, + "IdentifyCost": 147, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 48, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236606060, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + 341569830, + 1616088365, + 696647397, + -1, + -1 + ], + "MaxAffixLevel": [ + 49, + 49, + 49, + 49, + 49, + 49 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675361, + "Name": "Unique_Fist_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 193459, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607146, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675360, + "Name": "Unique_Fist_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 145849, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607147, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 234326220, + 982068194, + -529329636, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 57, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675359, + "Name": "Unique_Fist_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 145851, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607149, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -553879927, + 186163290, + 1791554648, + -1, + -1 + ], + "MaxAffixLevel": [ + 30, + 54, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675356, + "Name": "Unique_Fist_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 175937, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607150, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1329434470, + -1588784387, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 58, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2046350550, + "Name": "Unique_CombatStaff_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 195145, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + -1588784387, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2046350544, + "Name": "Unique_CombatStaff_2H_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 209214, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771748854, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2046350547, + "Name": "Unique_CombatStaff_2H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 197072, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8200, + "CostAlt": 5, + "IdentifyCost": 117, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 38, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771749941, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 125900958, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 39, + 39, + 35, + 39, + 39, + 39 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2046350545, + "Name": "Unique_CombatStaff_2H_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 197068, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9400, + "CostAlt": 5, + "IdentifyCost": 135, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 43, + "CrafterRequiredLevel": 44, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771749942, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + 1616088365, + 783140317, + -1, + -1 + ], + "MaxAffixLevel": [ + 45, + 45, + 45, + 45, + 45, + 45 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2046350549, + "Name": "Unique_CombatStaff_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 192342, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751029, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1588784387, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2046350548, + "Name": "Unique_CombatStaff_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 196880, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751032, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2046350543, + "Name": "Unique_CombatStaff_2H_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 197065, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751033, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 783140317, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 43, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -72246943, + "Name": "Unique_Staff_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 184228, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 143839492, + -1, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 34, + 34, + 34, + 34, + 34, + 34 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -72246949, + "Name": "Unique_Staff_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 59612, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7800, + "CostAlt": 5, + "IdentifyCost": 111, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 36, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115690266, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 37, + 37, + 37, + 37, + 37, + 37 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -72246950, + "Name": "Unique_Staff_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 59601, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 144, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 46, + "CrafterRequiredLevel": 47, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115690263, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -553879927, + 1791554648, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 48, + 48, + 48, + 48, + 48, + 48 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -72246945, + "Name": "Unique_Staff_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 193832, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689177, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + -923861827, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -72246948, + "Name": "Unique_Staff_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 195407, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689175, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + 234326220, + 121749883, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -72246944, + "Name": "Unique_Staff_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 193066, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689174, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 125900958, + 341569863, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 48, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -72246942, + "Name": "Unique_Staff_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 192167, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1461069734, + -128393329, + -846894066, + -1, + -1 + ], + "MaxAffixLevel": [ + 37, + 55, + 49, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410888658, + "Name": "Unique_Wand_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 182074, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410888661, + "Name": "Unique_Wand_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 193355, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7600, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88666139, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 125900958, + -669278121, + -1, + 505853881, + -1 + ], + "MaxAffixLevel": [ + 36, + 36, + 36, + 36, + 36, + 36 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410888657, + "Name": "Unique_Wand_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 182071, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667228, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1256761000, + 125900958, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 54, + 48, + 54, + 54, + 54 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410888688, + "Name": "Unique_Wand_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 181995, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667231, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 143839492, + 505853881, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410888664, + "Name": "Unique_Wand_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 182081, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667232, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410888691, + "Name": "Unique_Wand_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 181982, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667232, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1604369412, + 505853881, + -553879927, + 1791554648, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185407133, + "Name": "Unique_Mojo_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 194995, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + 143839492, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185407139, + "Name": "Unique_Mojo_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 192468, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136816472, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 949340468, + -553879927, + 1220289425, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185407132, + "Name": "Unique_Mojo_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 194988, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136815386, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185407134, + "Name": "Unique_Mojo_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 194991, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814297, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -23927138, + 493718975, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 57, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185407138, + "Name": "Unique_Mojo_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 191278, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814294, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -553879927, + -23927138, + -1802869037, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 43, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 92836493, + "Name": "Unique_Orb_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 184199, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 4, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1907454216, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 92836491, + "Name": "Unique_Orb_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 195325, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905180565, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + -98752611, + -1542055954, + -846894066, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 92836492, + "Name": "Unique_Orb_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 195127, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905180566, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 92836489, + "Name": "Unique_Orb_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 192320, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181656, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + 2111229381, + 296723815, + -529329636, + 4029372, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 253424963, + "Name": "Unique_Quiver_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 197625, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 253424967, + "Name": "Unique_Quiver_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 197629, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539236303, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + -1, + 143839492, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 253424966, + "Name": "Unique_Quiver_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 197628, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 99, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 32, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237389, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 33, + 33, + 33, + 33, + 33, + 33 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 253424965, + "Name": "Unique_Quiver_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 197627, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237391, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -923861827, + -1604369412, + 1132489149, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 253424962, + "Name": "Unique_Quiver_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197624, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237393, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 512004501, + 112679, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 253424964, + "Name": "Unique_Quiver_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 197626, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539238481, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 253424968, + "Name": "Unique_Quiver_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 197630, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539238481, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + -553879927, + 1132489149, + 143839492, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 529995552, + "Name": "Unique_Shield_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 152667, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815806862, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 529995525, + "Name": "Unique_Shield_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 152666, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7600, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815807947, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 3718951, + -1802869037, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 36, + 36, + 36, + 36, + 36, + 36 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 529995522, + "Name": "Unique_Shield_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 61550, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 143839492, + -843477631, + 2076777148, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 529995526, + "Name": "Unique_Shield_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 195389, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815809035, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + 810509126, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 529995520, + "Name": "Unique_Shield_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 197478, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815809039, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1802869037, + 982068194, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 529995527, + "Name": "Unique_Shield_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 192484, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815809040, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1802869037, + 2076777148, + -1299951557, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 55, + 55, + 62 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678188, + "Name": "Unique_Helm_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 220630, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 143839492, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678189, + "Name": "Unique_Helm_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 196024, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565454586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 3718951, + 59953577, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678194, + "Name": "Unique_Helm_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 197037, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565455674, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 1589045967, + 1808801829, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678191, + "Name": "Unique_Helm_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 220549, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565455675, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 3718951, + 412443728, + -1976254587, + -1 + ], + "MaxAffixLevel": [ + 53, + 47, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678190, + "Name": "Unique_Helm_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 198014, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456761, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + -926180037, + 810509126, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 47, + 59, + 59 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678193, + "Name": "Unique_Helm_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 223577, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456763, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1, + 810509126, + -250946460, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 54, + 61, + 48, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678221, + "Name": "Unique_Helm_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 222889, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456764, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241690, + "Name": "Unique_Gloves_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 197206, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 810509126, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241655, + "Name": "Unique_Gloves_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 197205, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533914300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + 512004501, + -1, + 942999935, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241654, + "Name": "Unique_Gloves_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197207, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533913215, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241656, + "Name": "Unique_Gloves_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 205642, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8200, + "CostAlt": 5, + "IdentifyCost": 117, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 38, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533913214, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 143839492, + 3718951, + 810509126, + 1220289425, + -1 + ], + "MaxAffixLevel": [ + 39, + 39, + 39, + 39, + 39, + 39 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241660, + "Name": "Unique_Gloves_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 205640, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912126, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + -553879927, + -1367325933, + 285196129, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241687, + "Name": "Unique_Gloves_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 205635, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912123, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + -1, + 512004501, + -250946460, + -1823379498, + 59953577 + ], + "MaxAffixLevel": [ + 54, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 1 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642707, + "Name": "Unique_Boots_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 205620, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 6, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1600, + "CostAlt": 5, + "IdentifyCost": 18, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 3, + "CrafterRequiredLevel": 4, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 143839492, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 6, + 6, + 6, + 6, + 6, + 6 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642731, + "Name": "Unique_Boots_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 205622, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4600, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880154, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 139520518, + -128393329, + -1409407349, + -1, + -1 + ], + "MaxAffixLevel": [ + 21, + 21, + 21, + 21, + 21, + 21 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642739, + "Name": "Unique_Boots_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197224, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140881242, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -250946460, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642735, + "Name": "Unique_Boots_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 205621, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882329, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642732, + "Name": "Unique_Boots_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 222464, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882333, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -2043699330, + 1589045967, + 59953577, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 54, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642733, + "Name": "Unique_Boots_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 205624, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -1648110199, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607762, + "Name": "Unique_Belt_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 193665, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2000, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 6, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 512004501, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 8, + 8, + 8, + 8, + 8, + 8 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607755, + "Name": "Unique_Belt_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 193670, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733831366, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607760, + "Name": "Unique_Belt_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 193667, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6000, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 26, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733831364, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 28, + 28, + 28, + 28, + 28, + 28 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607731, + "Name": "Unique_Belt_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 193671, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 99, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 32, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 3718951, + -128393329, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 33, + 26, + 33, + 23, + 33, + 33 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607763, + "Name": "Unique_Belt_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193664, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830278, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -250946460, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607756, + "Name": "Unique_Belt_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 193669, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830276, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 3718951, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 42, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607761, + "Name": "Unique_Belt_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 193666, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829191, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -529329636, + 285196129, + -1, + -1 + ], + "MaxAffixLevel": [ + 39, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607759, + "Name": "Unique_Belt_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 193668, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 143839492, + -1648110199, + 942999935, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 61, + 54, + 61, + 61, + 48, + 61 + ], + "I38": [ + 0, + 1, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186488, + "Name": "Unique_Bracer_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 193686, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 3718951, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186490, + "Name": "Unique_Bracer_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 193688, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5600, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 24, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875944874, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -1, + 59953577, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 26, + 26, + 26, + 26, + 26, + 26 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186487, + "Name": "Unique_Bracer_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 193685, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875943789, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 359993717, + 139520518, + -1604369412, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 17, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186489, + "Name": "Unique_Bracer_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 193687, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875943785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 139520518, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 26, + 53, + 53, + 53, + 53 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186486, + "Name": "Unique_Bracer_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 193684, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942699, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + 4029372, + -1751678268, + -128393329, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186485, + "Name": "Unique_Bracer_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193683, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942695, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186491, + "Name": "Unique_Bracer_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 193692, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942695, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 3718951, + 679540618, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 43, + 62, + 43, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414945, + "Name": "Unique_Chest_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 197203, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4000, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 16, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 143839492, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 18, + 18, + 18, + 18, + 18, + 18 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414939, + "Name": "Unique_Chest_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 205607, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 28, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612257709, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 512004501, + -529329636, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 30, + 30, + 30, + 27, + 30, + 30 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414947, + "Name": "Unique_Chest_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 197204, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8000, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 37, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612258794, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 38, + 38, + 38, + 38, + 38, + 38 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414974, + "Name": "Unique_Chest_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 222455, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11400, + "CostAlt": 5, + "IdentifyCost": 165, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259882, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1, + -1648110199, + 1589045967, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 55, + 55, + 55, + 55, + 55 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414979, + "Name": "Unique_Chest_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 205616, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259883, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1802869037, + -529329636, + 3718951, + 4029372, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 41, + 59 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414938, + "Name": "Unique_Chest_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 205609, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259885, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414978, + "Name": "Unique_Chest_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 205608, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -529329636, + -2133546597, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 62, + 49, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712274, + "Name": "Unique_Pants_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 197220, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 3718951, + 1220289425, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712269, + "Name": "Unique_Pants_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 209059, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731047, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 143839492, + 139520518, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712268, + "Name": "Unique_Pants_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 209057, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731045, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 3718951, + -926180037, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712272, + "Name": "Unique_Pants_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 222476, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729957, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712273, + "Name": "Unique_Pants_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 197216, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729955, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1751678268, + 4029372, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 62, + 55, + 55, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729655668, + "Name": "Unique_Shoulder_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 198573, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 3718951, + -128393329, + 338507747, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729655667, + "Name": "Unique_Shoulder_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 200310, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365491342, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 3718951, + 982068194, + -1604369412, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729655662, + "Name": "Unique_Shoulder_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 223619, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492430, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729655666, + "Name": "Unique_Shoulder_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 201325, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492432, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 3718951, + 982068194, + 143839492, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 55, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736658, + "Name": "Unique_SpiritStone_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 222171, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242895467, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -1, + 143839492, + 1220289425, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736659, + "Name": "Unique_SpiritStone_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 222169, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4600, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242895466, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1, + 4029372, + -1625420711, + -1, + -1 + ], + "MaxAffixLevel": [ + 21, + 21, + 21, + 21, + 21, + 21 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736661, + "Name": "Unique_SpiritStone_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 222172, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894379, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -208849191, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736660, + "Name": "Unique_SpiritStone_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 222173, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894377, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -1, + -1588784387, + -923861827, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736662, + "Name": "Unique_SpiritStone_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 222306, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894376, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 1589045967, + -208849191, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736657, + "Name": "Unique_SpiritStone_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 222170, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893290, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + 186163290, + -1588784387, + -1, + -1 + ], + "MaxAffixLevel": [ + 57, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736656, + "Name": "Unique_SpiritStone_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 222305, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893288, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 143839492, + -1625420711, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 48, + 61, + 54, + 61, + 61 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736655, + "Name": "Unique_SpiritStone_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 221572, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -208849191, + -529329636, + -1588784387, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 43, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -29410707, + "Name": "Unique_VoodooMask_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 221167, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1, + 982068194, + 949340468, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -29410708, + "Name": "Unique_VoodooMask_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 204136, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620034069, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -29410712, + "Name": "Unique_VoodooMask_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 221382, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620035155, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -926180037, + 1220289425, + 1223187383, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -29410711, + "Name": "Unique_VoodooMask_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 221166, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036244, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1604369412, + 4029372, + 949340468, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 58, + 40, + 58, + 58, + 58 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -29410705, + "Name": "Unique_VoodooMask_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 221168, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036247, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 585244974, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 49, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 434436246, + "Name": "Unique_WizardHat_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 218681, + "ItemTypesGBID": -1499089042, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 143839492, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 434436244, + "Name": "Unique_WizardHat_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 224908, + "ItemTypesGBID": -1499089042, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755623809, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 287834549, + -250946460, + 296723815, + -1, + -1 + ], + "MaxAffixLevel": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 434436247, + "Name": "Unique_WizardHat_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 220694, + "ItemTypesGBID": -1499089042, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755623811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + 40042201, + 512004501, + 186163290, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2084299824, + "Name": "Unique_Cloak_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 223149, + "ItemTypesGBID": 121411562, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40855421, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2084299828, + "Name": "Unique_Cloak_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 223150, + "ItemTypesGBID": 121411562, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 810509126, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2084299825, + "Name": "Unique_Cloak_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 223151, + "ItemTypesGBID": 121411562, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40857599, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -529329636, + 963606610, + 139520518, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 49, + 62, + 49, + 62 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595609, + "Name": "Unique_BarbBelt_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 212232, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4600, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 3718951, + 699281021, + -1, + -1 + ], + "MaxAffixLevel": [ + 21, + 21, + 21, + 21, + 21, + 21 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595607, + "Name": "Unique_BarbBelt_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 193676, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112155409, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1096375804, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595606, + "Name": "Unique_BarbBelt_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 193674, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156495, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 699281021, + 3718951, + -553879927, + 2076777148, + -1738242886, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 1, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595611, + "Name": "Unique_BarbBelt_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 193673, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156497, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1802869037, + 810509126, + -1823379498, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595612, + "Name": "Unique_BarbBelt_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193672, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156498, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 3718951, + -843477631, + 285196129, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595610, + "Name": "Unique_BarbBelt_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 212230, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157584, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1565068128, + 3718951, + -553879927, + 143839492, + 1434483431, + -1 + ], + "MaxAffixLevel": [ + 39, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595605, + "Name": "Unique_BarbBelt_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 193675, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + 1589045967, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 42, + 61, + 48, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595608, + "Name": "Unique_BarbBelt_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 212234, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157587, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 1434483431, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774098, + "Name": "Unique_Amulet_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 197823, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 13, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228618, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 143839492, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 15, + 15, + 15, + 15, + 15 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774064, + "Name": "Unique_Amulet_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 197813, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774094, + "Name": "Unique_Amulet_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 197819, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 5, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5800, + "CostAlt": 5, + "IdentifyCost": 81, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 25, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228621, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 27, + 27, + 27, + 27, + 27, + 27 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774070, + "Name": "Unique_Amulet_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 197818, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 99, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 32, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228622, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1, + 1223187383, + 1220289425, + -250946460, + -1 + ], + "MaxAffixLevel": [ + 33, + 33, + 33, + 33, + 33, + 33 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774096, + "Name": "Unique_Amulet_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 197821, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8200, + "CostAlt": 5, + "IdentifyCost": 117, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 38, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228623, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -1648110199, + -1796946852, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 39, + 39, + 39, + 39, + 39 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774095, + "Name": "Unique_Amulet_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 197820, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228624, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + 1438797838, + 139520518, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 37, + 47, + 47, + 47, + 47 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774097, + "Name": "Unique_Amulet_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 197822, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228625, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -553879927, + -1711754382, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774062, + "Name": "Unique_Amulet_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193659, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228649, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 143839492, + 139520518, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774063, + "Name": "Unique_Amulet_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 197812, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 412443728, + -553879927, + 512004501, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774066, + "Name": "Unique_Amulet_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 197815, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 1616088365, + 512004501, + -1, + -1 + ], + "MaxAffixLevel": [ + 48, + 61, + 36, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774067, + "Name": "Unique_Amulet_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 197817, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 143839492, + 679540618, + -2133546597, + -1604369412, + -1 + ], + "MaxAffixLevel": [ + 48, + 48, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774099, + "Name": "Unique_Amulet_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 197824, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 40042201, + -843477631, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 55, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774065, + "Name": "Unique_Amulet_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 197814, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1, + -128393329, + 982068194, + 942999935, + -1 + ], + "MaxAffixLevel": [ + 49, + 62, + 49, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561762, + "Name": "Unique_Ring_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 212586, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 1589045967, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561801, + "Name": "Unique_Ring_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 197835, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967284, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561736, + "Name": "Unique_Ring_021", + "GBID": 0, + "PAD": 0, + "SNOActor": 212546, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4400, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 18, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967285, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 20, + 20, + 20, + 20, + 20, + 20 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561798, + "Name": "Unique_Ring_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 197839, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5200, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 22, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 24, + 24, + 24, + 24, + 24, + 24 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561794, + "Name": "Unique_Ring_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 212602, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967312, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 143839492, + 810509126, + 285196129, + -1, + -1 + ], + "MaxAffixLevel": [ + 16, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561797, + "Name": "Unique_Ring_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 212589, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7800, + "CostAlt": 5, + "IdentifyCost": 111, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 36, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967316, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 1589045967, + -1894589241, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 37, + 37, + 37, + 37, + 37, + 37 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561799, + "Name": "Unique_Ring_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 197837, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8800, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 41, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967317, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 40042201, + -1542055954, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 42, + 42, + 42, + 42, + 42, + 42 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561770, + "Name": "Unique_Ring_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 212581, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9600, + "CostAlt": 5, + "IdentifyCost": 138, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 45, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967318, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + 512004501, + -128393329, + 139520518, + -1, + -1 + ], + "MaxAffixLevel": [ + 46, + 46, + 46, + 23, + 46, + 46 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561795, + "Name": "Unique_Ring_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 212590, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967319, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 143839492, + 3718951, + 2076777148, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561734, + "Name": "Unique_Ring_023", + "GBID": 0, + "PAD": 0, + "SNOActor": 212588, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11400, + "CostAlt": 5, + "IdentifyCost": 165, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967320, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 40042201, + 285196129, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 55, + 55, + 55, + 55, + 55 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561796, + "Name": "Unique_Ring_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 212601, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967321, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -1802869037, + 143839492, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 59, + 41, + 59, + 59, + 59, + 59 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561737, + "Name": "Unique_Ring_020", + "GBID": 0, + "PAD": 0, + "SNOActor": 212603, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 512004501, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561802, + "Name": "Unique_Ring_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197834, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + -843477631, + 512004501, + 112679, + -1 + ], + "MaxAffixLevel": [ + 36, + 61, + 42, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561800, + "Name": "Unique_Ring_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 197836, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 3718951, + 1620834581, + 810509126, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 42, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561735, + "Name": "Unique_Ring_022", + "GBID": 0, + "PAD": 0, + "SNOActor": 212618, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -1751678268, + -1823379498, + 512004501, + 1616088365, + -1 + ], + "MaxAffixLevel": [ + 42, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561763, + "Name": "Unique_Ring_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 212648, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + 143839492, + 4029372, + 3718951, + -1 + ], + "MaxAffixLevel": [ + 49, + 49, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561761, + "Name": "Unique_Ring_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 212582, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 942999935, + -1, + 4029372, + -128393329, + -1542055954, + -2133546597 + ], + "MaxAffixLevel": [ + 62, + 62, + 55, + 55, + 62, + 55 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 1 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128051408, + "Name": "Unique_Mighty_1H_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 208771, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068680, + "SNOSet": 269541902, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + -1256761000, + -1311456189, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128051407, + "Name": "Unique_Mighty_1H_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 208775, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068680, + "SNOSet": 269541902, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -553879927, + 1350281776, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444735, + "Name": "Unique_HandXBow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 211745, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389486, + "SNOSet": 269541903, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1951651227, + 1616088365, + 1978556068, + 1620834581, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444734, + "Name": "Unique_HandXBow_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 211749, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389486, + "SNOSet": 269541903, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + 1616088365, + -553879927, + -1014170317, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410888690, + "Name": "Unique_Wand_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 210479, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667232, + "SNOSet": 269541904, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -669278121, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 92836522, + "Name": "Unique_Orb_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 212277, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181655, + "SNOSet": 269541904, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 2111229381, + -846894066, + 512004501, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675332, + "Name": "Unique_Fist_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 208898, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607149, + "SNOSet": 269541905, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 139520518, + 1791554648, + -1588784387, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675331, + "Name": "Unique_Fist_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 208996, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607149, + "SNOSet": 269541905, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1625420711, + 1791554648, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574203689, + "Name": "Unique_CeremonialDagger_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 223365, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267402, + "SNOSet": 269541906, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -553879927, + 1978556068, + 234326220, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185407163, + "Name": "Unique_Mojo_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 210993, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814295, + "SNOSet": 269541906, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + 121749850, + -23927138, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678196, + "Name": "Unique_Helm_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 210851, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456763, + "SNOSet": 269541907, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1894589241, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444733, + "Name": "Unique_HandXBow_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 210874, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389486, + "SNOSet": 269541907, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -812845450, + -1823379498, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2084299829, + "Name": "Unique_Cloak_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 208934, + "ItemTypesGBID": 121411562, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40857598, + "SNOSet": 269541907, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -923861827, + 963606610, + 59953577, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561769, + "Name": "Unique_Ring_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 212545, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": 269541907, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642706, + "Name": "Unique_Boots_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 197223, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882333, + "SNOSet": 269541907, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1802869037, + 139520518, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678195, + "Name": "Unique_Helm_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 210265, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456763, + "SNOSet": 269541908, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + 3718951, + 4029372, + -128393329, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -88916015, + "Name": "Unique_Mighty_2H_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 210678, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329204073, + "SNOSet": 269541908, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1620834581, + 1616088365, + 285196129, + -394192022, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414944, + "Name": "Unique_Chest_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 205613, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": 269541908, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + 982068194, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262595604, + "Name": "Unique_BarbBelt_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 212235, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157587, + "SNOSet": 269541908, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -529329636, + -1, + 1434483431, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241661, + "Name": "Unique_Gloves_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 205631, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912121, + "SNOSet": 269541908, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 338507747, + -1367325933, + 982068194, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642705, + "Name": "Unique_Boots_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 205625, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": 269541908, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 143839492, + -250946460, + 139520518, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 92836523, + "Name": "Unique_Orb_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 212780, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181656, + "SNOSet": 269541909, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + -553879927, + 2111229381, + 143839492, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678220, + "Name": "Unique_Helm_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 211531, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456763, + "SNOSet": 269541909, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -553879927, + 143839492, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414943, + "Name": "Unique_Chest_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 211626, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259885, + "SNOSet": 269541909, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 3718951, + 4029372, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607758, + "Name": "Unique_Belt_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 212657, + "ItemTypesGBID": 3635495, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157586, + "SNOSet": 269541909, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 3718951, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774068, + "Name": "Unique_Amulet_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 222486, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": 269541909, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1362485177, + 143839492, + -1542055954, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -199736654, + "Name": "Unique_SpiritStone_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 222307, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893288, + "SNOSet": 269541910, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + 3718951, + -208849191, + -923861827, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2046350551, + "Name": "Unique_CombatStaff_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 212208, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751032, + "SNOSet": 269541910, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 783140317, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414942, + "Name": "Unique_Chest_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 205614, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": 269541910, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1802869037, + 59953577, + 4029372, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607757, + "Name": "Unique_Belt_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 222487, + "ItemTypesGBID": 3635495, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": 269541910, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1711754382, + 3718951, + -250946460, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712275, + "Name": "Unique_Pants_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 205646, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729957, + "SNOSet": 269541910, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 143839492, + 810509126, + 139520518, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -29410706, + "Name": "Unique_VoodooMask_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 221202, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036246, + "SNOSet": 269541934, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1894589241, + 585244974, + 949340468, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414941, + "Name": "Unique_Chest_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 205615, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": 269541934, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + -553879927, + -529329636, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185407164, + "Name": "Unique_Mojo_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 216525, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814295, + "SNOSet": 269541934, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + -553879927, + -2133546597, + -23927138, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561768, + "Name": "Unique_Ring_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 212579, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": 269541934, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642704, + "Name": "Unique_Boots_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 205627, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": 269541934, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 139520518, + 1438797838, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774100, + "Name": "Unique_Amulet_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 224189, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": 269541937, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 512004501, + 810509126, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642698, + "Name": "Unique_Boots_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 222463, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": 269541937, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 3718951, + 139520518, + -1299951557, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 839899207, + "Name": "Unique_ChestArmor_028", + "GBID": 0, + "PAD": 0, + "SNOActor": 222456, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": 269541937, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 143839492, + -843477631, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607726, + "Name": "Unique_Belt_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 224191, + "ItemTypesGBID": 3635495, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": 269541937, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -1751678268, + -128393329, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712303, + "Name": "Unique_Pants_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 222477, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729957, + "SNOSet": 269541937, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 40042201, + 4029372, + 512004501, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1006774069, + "Name": "Unique_Amulet_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 222490, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": 269541935, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 1589045967, + 59953577, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561767, + "Name": "Unique_Ring_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 212587, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": 269541935, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 139520518, + 982068194, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561766, + "Name": "Unique_Ring_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 212650, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": 269541936, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -1751678268, + 112679, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482561765, + "Name": "Unique_Ring_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 212651, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": 269541936, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1299951557, + 143839492, + -529329636, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414909, + "Name": "Unique_Chest_025", + "GBID": 0, + "PAD": 0, + "SNOActor": 197199, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612257708, + "SNOSet": 1939707167, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729655663, + "Name": "Unique_Shoulder_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 222948, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365490252, + "SNOSet": 1939707167, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096939, + "Name": "Unique_Sword_1H_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 223408, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938914, + "SNOSet": 1939707167, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678222, + "Name": "Unique_Helm_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 222559, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565454586, + "SNOSet": 1939707168, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712300, + "Name": "Unique_Pants_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 197218, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512732134, + "SNOSet": 1939707168, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241691, + "Name": "Unique_Gloves_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 197210, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533914300, + "SNOSet": 1939707168, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642702, + "Name": "Unique_Boots_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 197225, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880155, + "SNOSet": 1939707168, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642700, + "Name": "Unique_Boots_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 197221, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880156, + "SNOSet": 1679852757, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607729, + "Name": "Unique_Belt_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 222974, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830280, + "SNOSet": 1679852757, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712302, + "Name": "Unique_Pants_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 197214, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731049, + "SNOSet": 1679852757, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729655661, + "Name": "Unique_Shoulder_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 224051, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365491340, + "SNOSet": 1679852758, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186493, + "Name": "Unique_Bracer_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 222972, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875943787, + "SNOSet": 1679852758, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414908, + "Name": "Unique_Chest_026", + "GBID": 0, + "PAD": 0, + "SNOActor": 197193, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612258795, + "SNOSet": 1679852758, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678224, + "Name": "Unique_Helm_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 223972, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565455673, + "SNOSet": 1679852758, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729655629, + "Name": "Unique_Shoulder_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 225132, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365491342, + "SNOSet": -608215717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241662, + "Name": "Unique_Gloves_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 205636, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533913211, + "SNOSet": -608215717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712276, + "Name": "Unique_Pants_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 209054, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731045, + "SNOSet": -608215717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642703, + "Name": "Unique_Boots_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 205618, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140881244, + "SNOSet": -608215717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186517, + "Name": "Unique_Bracer_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 222981, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942700, + "SNOSet": -608215716, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607728, + "Name": "Unique_Belt_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 222976, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829191, + "SNOSet": -608215716, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678225, + "Name": "Unique_Helm_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 221518, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456760, + "SNOSet": -608215716, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -200414907, + "Name": "Unique_Chest_027", + "GBID": 0, + "PAD": 0, + "SNOActor": 205612, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259885, + "SNOSet": -1870612249, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -411607727, + "Name": "Unique_Belt_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 222740, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829188, + "SNOSet": -1870612249, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530712304, + "Name": "Unique_Pants_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 205644, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729957, + "SNOSet": -1870612249, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729655660, + "Name": "Unique_Shoulder_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 224397, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492430, + "SNOSet": -1870612249, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1550186518, + "Name": "Unique_Bracer_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 222741, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942697, + "SNOSet": -1870612249, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475241693, + "Name": "Unique_Gloves_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 205632, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912123, + "SNOSet": -1870612248, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -110642699, + "Name": "Unique_Boots_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 205626, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882332, + "SNOSet": -1870612248, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1887678226, + "Name": "Unique_Helm_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 221624, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456763, + "SNOSet": -1870612248, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 529995553, + "Name": "Unique_Shield_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 223758, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815809039, + "SNOSet": -1870612247, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128051403, + "Name": "Unique_Mighty_1H_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 223627, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068680, + "SNOSet": -1870612247, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 410888696, + "Name": "Unique_Wand_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 224184, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667232, + "SNOSet": -1870612247, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574203664, + "Name": "Unique_CeremonialDagger_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 223396, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267402, + "SNOSet": -1870612247, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115444697, + "Name": "Unique_HandXBow_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 223763, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389486, + "SNOSet": -1870612247, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -591675327, + "Name": "Unique_Fist_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 223526, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607149, + "SNOSet": -1870612247, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 337651615, + "Name": "Unique_Axe_1H_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 223461, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414572, + "SNOSet": -1870612247, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1705740663, + "Name": "Unique_Dagger_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 189899, + "ItemTypesGBID": -262576534, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1589045967, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 625567132, + "Name": "Unique_Offhand_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 200476, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303414213, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096979, + "Name": "Unique_Sword_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 9, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1147, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 231, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 222, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 1208, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 197, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 3, + 3, + 3, + 3, + 3, + 3 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096947, + "Name": "Unique_Sword_1H_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 110952, + "ItemTypesGBID": 140782159, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938919, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1791554648, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398096913, + "Name": "Unique_Sword_1H_021", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 16917041, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937832, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1808801829, + 40042201, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -358961550, + "Name": "Unique_Sword_2H_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 59668, + "ItemTypesGBID": -1307049751, + "Flags": 16917042, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231802434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1311456156, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1176076812, + "Name": "Unique_Mace_1H_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 187952, + "ItemTypesGBID": 4026134, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 22, + 11, + 22, + 22, + 22 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -91496122, + "Name": "Unique_Dagger_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195174, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3200, + "CostAlt": 5, + "IdentifyCost": 42, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 12, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1751678268, + -1256761000, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 14, + 14, + 14, + 14, + 14, + 14 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -86752438, + "Name": "Unique_Dagger_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221313, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303414213, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1133, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245836, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1177564965, + 1616088365, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -92682043, + "Name": "Unique_Dagger_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192579, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413123, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 234326220, + 1978556068, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -87938359, + "Name": "Unique_Dagger_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195655, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413120, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 1, + 1, + 1, + 1, + 1, + 1 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -55918492, + "Name": "Unique_Dagger_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 219329, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413118, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245837, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + 125900958, + -529329636, + 2044719016, + 810509126, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -667058651, + "Name": "Unique_CeremonialDagger_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193433, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 125900958, + 2044719016, + 493718975, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -663500888, + "Name": "Unique_CeremonialDagger_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192540, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6000, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 26, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635269580, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 28, + 28, + 28, + 28, + 28, + 28 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -665872730, + "Name": "Unique_CeremonialDagger_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222978, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635268492, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1604369412, + 59953577, + 1616088365, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -669430493, + "Name": "Unique_CeremonialDagger_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 196250, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267405, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 234326220, + -553879927, + 810509126, + -493913099, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -668244572, + "Name": "Unique_CeremonialDagger_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 209246, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267402, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245835, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 4029372, + 1350281776, + 949340468, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -661129046, + "Name": "Unique_CeremonialDagger_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195370, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267400, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1200, + "SNOParam": 67600, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247896, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1461069734, + 982068194, + -493913099, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -122601816, + "Name": "Unique_Sword_1H_017_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 115140, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5200, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 22, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + 1616088365, + -976182127, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 24, + 24, + 24, + 24, + 24, + 24 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -167666814, + "Name": "Unique_Sword_1H_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 270978, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8200, + "CostAlt": 5, + "IdentifyCost": 117, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 38, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937830, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1751678268, + 234326220, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 39, + 39, + 39, + 39, + 39, + 39 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -166480893, + "Name": "Unique_Sword_1H_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 194481, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937827, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + 125900958, + -553879927, + 1978556068, + 810509126, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -126159579, + "Name": "Unique_Sword_1H_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 185397, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1461069734, + -1751678268, + 2044719016, + 2076777148, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -165294972, + "Name": "Unique_Sword_1H_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 182347, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247662, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1751678268, + 1350281776, + 2044719016, + 1620834581, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -120229974, + "Name": "Unique_Sword_1H_019_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 270977, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936738, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -161737209, + "Name": "Unique_Sword_1H_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 115141, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936737, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1133, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249967, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 143839492, + 1616088365, + -1, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -129717342, + "Name": "Unique_Sword_1H_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 189552, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936736, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 40042201, + -1461069734, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128531421, + "Name": "Unique_Sword_1H_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192511, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936736, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 195, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249592, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -812845450, + 40042201, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -99865437, + "Name": "Unique_Sword_2H_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 59665, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1616088365, + 2044719016, + -1823379498, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -60730044, + "Name": "Unique_Sword_2H_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 198960, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 28, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231803523, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + 338507747, + 1589045967, + -1, + -1 + ], + "MaxAffixLevel": [ + 30, + 30, + 30, + 30, + 30, + 30 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -97493595, + "Name": "Unique_Sword_2H_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 181511, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8000, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 37, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231802438, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247537, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 234326220, + -1751678268, + 121749883, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 38, + 38, + 38, + 38, + 38, + 38 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -61915965, + "Name": "Unique_Sword_2H_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 270979, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10400, + "CostAlt": 5, + "IdentifyCost": 150, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 49, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231802434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 338507747, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 50, + 50, + 50, + 50, + 50, + 50 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -93935832, + "Name": "Unique_Sword_2H_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 184184, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801349, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 1791554648, + -128393329, + 942999935, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 56, + 56, + 56 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -92749911, + "Name": "Unique_Sword_2H_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 184190, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801347, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1142, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 139520518, + 2044719016, + 810509126, + 1350281776, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -98679516, + "Name": "Unique_Sword_2H_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 181495, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 1616088365, + 2044719016, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -63101886, + "Name": "Unique_Sword_2H_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 184187, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249138, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1461069734, + -1751678268, + 1620834581, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -101051358, + "Name": "Unique_Sword_2H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 190360, + "ItemTypesGBID": -1307049751, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1616088365, + 40042201, + 2044719016, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -285694638, + "Name": "Unique_Axe_1H_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 116386, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245854, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1177564965, + 810509126, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -284508717, + "Name": "Unique_Axe_1H_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 116387, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661413481, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -288066480, + "Name": "Unique_Axe_1H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 116388, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10200, + "CostAlt": 5, + "IdentifyCost": 147, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 48, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661413483, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1616088365, + -1823379498, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 49, + 49, + 49, + 49, + 49, + 49 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -282136875, + "Name": "Unique_Axe_1H_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 189973, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414571, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248484, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -1256761000, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -280950954, + "Name": "Unique_Axe_1H_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 181484, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414573, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246113, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1796946852, + -1461069734, + -1648110199, + 512004501, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -283322796, + "Name": "Unique_Axe_1H_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 116389, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414574, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246101, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + -1751678268, + 2044719016, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -217893261, + "Name": "Unique_Axe_2H_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 186560, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + 4029372, + 139520518, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220265103, + "Name": "Unique_Axe_2H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 186494, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7600, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700548872, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246118, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + 2044719016, + 1616088365, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 36, + 36, + 36, + 36, + 36, + 36 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -181129710, + "Name": "Unique_Axe_2H_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 191065, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549962, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 237, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 229, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1461069734, + -1, + 40042201, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -182315631, + "Name": "Unique_Axe_2H_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 6329, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549963, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248462, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -210777735, + "Name": "Unique_Axe_2H_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192887, + "ItemTypesGBID": 119458520, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549965, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -1751678268, + -1256761000, + -1976254587, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 572542761, + "Name": "Unique_Mace_1H_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 188185, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5600, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 24, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246918, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 143839492, + 1791554648, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 26, + 26, + 26, + 26, + 26, + 26 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 576100524, + "Name": "Unique_Mace_1H_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 188169, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025087, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 1616088365, + 341569830, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 578472366, + "Name": "Unique_Mace_1H_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 188189, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025085, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 125900958, + 1978556068, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 573728682, + "Name": "Unique_Mace_1H_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 102665, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025083, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + -1256761000, + 341569830, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 579658287, + "Name": "Unique_Mace_1H_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 188158, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023997, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 1589045967, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 580844208, + "Name": "Unique_Mace_1H_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 188177, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023996, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 571356840, + "Name": "Unique_Mace_1H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 188181, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023995, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1140, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + -1751678268, + 1616088365, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 610492233, + "Name": "Unique_Mace_1H_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 188173, + "ItemTypesGBID": 4026134, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1751678268, + 1350281776, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 641530059, + "Name": "Unique_Mace_2H_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 59633, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249958, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 2044719016, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 639158217, + "Name": "Unique_Mace_2H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 99227, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616890781, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -812845450, + -1751678268, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 679479531, + "Name": "Unique_Mace_2H_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 191584, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616889696, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 80228221, + 1616088365, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 677107689, + "Name": "Unique_Mace_2H_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 190840, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616889693, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + 112679, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 645087822, + "Name": "Unique_Mace_2H_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 190868, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888607, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 640344138, + "Name": "Unique_Mace_2H_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 190866, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888603, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 512004501, + 2044719016, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 648645585, + "Name": "Unique_Mace_2H_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197717, + "ItemTypesGBID": 89494384, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888602, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247913, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1362485177, + 1791554648, + 810509126, + 186163290, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80368181, + "Name": "Unique_Polearm_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 196570, + "ItemTypesGBID": -1203595600, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 121749883, + 2044719016, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -77996339, + "Name": "Unique_Polearm_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 191570, + "ItemTypesGBID": -1203595600, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7600, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337762431, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 143839492, + -812845450, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 36, + 36, + 36, + 36, + 36, + 36 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -79182260, + "Name": "Unique_Polearm_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192569, + "ItemTypesGBID": -1203595600, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337761338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1604369412, + 1616088365, + 59953577, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -81554102, + "Name": "Unique_Polearm_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195491, + "ItemTypesGBID": -1203595600, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337761335, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247641, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 80228221, + 1350281776, + 1978556068, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -152845160, + "Name": "Unique_Spear_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197095, + "ItemTypesGBID": 140519163, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4000, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 16, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + 1791554648, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 18, + 18, + 18, + 18, + 18, + 18 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -156402923, + "Name": "Unique_Spear_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 191446, + "ItemTypesGBID": 140519163, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101311666, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 1616088365, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -155217002, + "Name": "Unique_Spear_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 196638, + "ItemTypesGBID": 140519163, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101310576, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1196, + "SNOParam": 377452, + "Formula": [] + }, + { + "AttributeId": 1196, + "SNOParam": 377453, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -553879927, + 139520518, + -1802869037, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -154031081, + "Name": "Unique_Spear_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 194241, + "ItemTypesGBID": 140519163, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101310575, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -529329636, + -2133546597, + 40042201, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1576116922, + "Name": "Unique_Bow_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 175580, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091504071, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1978556068, + 1791554648, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1573745080, + "Name": "Unique_Bow_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 220654, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091504069, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 22, + 22, + 22, + 22, + 22, + 22 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1572559159, + "Name": "Unique_Bow_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221938, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246605, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1604369412, + 2044719016, + 696647397, + -1461069734, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1580860606, + "Name": "Unique_Bow_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091502980, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + 1616088365, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1536981529, + "Name": "Unique_Bow_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 175582, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501894, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248817, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + 125900958, + 40042201, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1542911134, + "Name": "Unique_Bow_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221893, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501891, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1571373238, + "Name": "Unique_Bow_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192602, + "ItemTypesGBID": 110504, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501889, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1147, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 1978556068, + 810509126, + 2128734586, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999433761, + "Name": "Unique_XBow_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 98163, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 810509126, + 125900958, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1005363366, + "Name": "Unique_XBow_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222286, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5600, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 24, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181031815, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247429, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1751678268, + 942999935, + 3718951, + -1461069734, + -1 + ], + "MaxAffixLevel": [ + 26, + 26, + 26, + 26, + 26, + 26 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -966227973, + "Name": "Unique_XBow_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 194219, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8800, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 41, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181032902, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248480, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 810509126, + -812845450, + 3718951, + -1 + ], + "MaxAffixLevel": [ + 42, + 42, + 42, + 42, + 42, + 42 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1001805603, + "Name": "Unique_XBow_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 194957, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033989, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -965042052, + "Name": "Unique_XBow_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 204874, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033991, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247430, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 234326220, + 1438797838, + -926180037, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1004177445, + "Name": "Unique_XBow_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192836, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033992, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247577, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -1461069734, + 810509126, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1002991524, + "Name": "Unique_XBow_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221760, + "ItemTypesGBID": -1338851342, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -1751678268, + 234326220, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -873845798, + "Name": "Unique_HandXBow_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195078, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8800, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 41, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363390577, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 42, + 42, + 42, + 42, + 42, + 42 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -875031719, + "Name": "Unique_HandXBow_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192467, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1616088365, + 1951651227, + 112679, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 57, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876217640, + "Name": "Unique_HandXBow_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192528, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 810509126, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -872659877, + "Name": "Unique_HandXBow_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 196409, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389485, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1350281776, + 810509126, + -553879927, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -839454089, + "Name": "Unique_HandXBow_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 225181, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389484, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246678, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 2128734586, + 810509126, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1723692951, + "Name": "Unique_Mighty_1H_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192105, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246836, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + -812845450, + -98752611, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1689301242, + "Name": "Unique_Mighty_1H_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193486, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 144, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 46, + "CrafterRequiredLevel": 47, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290067592, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 810509126, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 48, + 48, + 48, + 48, + 48, + 48 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1729622556, + "Name": "Unique_Mighty_1H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192705, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11400, + "CostAlt": 5, + "IdentifyCost": 165, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068679, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 55, + 55, + 55, + 55, + 55 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1724878872, + "Name": "Unique_Mighty_1H_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193611, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068682, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1096375804, + 1350281776, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1621499865, + "Name": "Unique_Mighty_2H_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 196308, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329201897, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1658263416, + "Name": "Unique_Mighty_2H_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195690, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7800, + "CostAlt": 5, + "IdentifyCost": 111, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 36, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329202983, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -812845450, + 699281021, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 37, + 37, + 37, + 37, + 37, + 37 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1661821179, + "Name": "Unique_Mighty_2H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193657, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329204073, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 1350281776, + -553879927, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1655891574, + "Name": "Unique_Mighty_2H_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195138, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329204075, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -394192022, + -1461069734, + -1976254587, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458540018, + "Name": "Unique_Fist_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 196472, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 234326220, + -1976254587, + 21694593, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1463283702, + "Name": "Unique_Fist_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 145850, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6000, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 26, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236604971, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1808801829, + -553879927, + 1616088365, + -1625420711, + -1, + -1 + ], + "MaxAffixLevel": [ + 28, + 28, + 28, + 28, + 28, + 28 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497675411, + "Name": "Unique_Fist_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 130557, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8000, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 37, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236606059, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 1350281776, + 40042201, + -1588784387, + -1, + -1 + ], + "MaxAffixLevel": [ + 38, + 38, + 38, + 38, + 38, + 38 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496489490, + "Name": "Unique_Fist_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 175938, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10200, + "CostAlt": 5, + "IdentifyCost": 147, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 48, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236606060, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 1616088365, + 696647397, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 49, + 49, + 49, + 49, + 49, + 49 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459725939, + "Name": "Unique_Fist_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193459, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607146, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1460911860, + "Name": "Unique_Fist_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 145849, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607147, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 234326220, + 982068194, + 2044719016, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 57, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1462097781, + "Name": "Unique_Fist_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 145851, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607150, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 186163290, + 1791554648, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1464469623, + "Name": "Unique_Fist_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 175939, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 1350281776, + 143839492, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1465655544, + "Name": "Unique_Fist_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 175937, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -553879927, + 810509126, + 1616088365, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1053925118, + "Name": "Unique_CombatStaff_2H_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195145, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + -1588784387, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1061040644, + "Name": "Unique_CombatStaff_2H_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 209214, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771748854, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1057482881, + "Name": "Unique_CombatStaff_2H_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197072, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8200, + "CostAlt": 5, + "IdentifyCost": 117, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 38, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771749941, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 125900958, + 810509126, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 39, + 39, + 39, + 39, + 39, + 39 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1059854723, + "Name": "Unique_CombatStaff_2H_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197068, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9400, + "CostAlt": 5, + "IdentifyCost": 135, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 43, + "CrafterRequiredLevel": 44, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771749942, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247777, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + 1616088365, + 783140317, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 45, + 45, + 45, + 45, + 45, + 45 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1055111039, + "Name": "Unique_CombatStaff_2H_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192342, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751029, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1588784387, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1056296960, + "Name": "Unique_CombatStaff_2H_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 196880, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751032, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1062226565, + "Name": "Unique_CombatStaff_2H_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197065, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751034, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246562, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 783140317, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1139167413, + "Name": "Unique_Staff_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 184228, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1350281776, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 34, + 34, + 34, + 34, + 34, + 34 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132051887, + "Name": "Unique_Staff_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 59612, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7800, + "CostAlt": 5, + "IdentifyCost": 111, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 36, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115690266, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 37, + 37, + 37, + 37, + 37, + 37 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1130865966, + "Name": "Unique_Staff_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 59601, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 144, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 46, + "CrafterRequiredLevel": 47, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115690263, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -553879927, + 1791554648, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 48, + 48, + 48, + 48, + 48, + 48 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1136795571, + "Name": "Unique_Staff_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193832, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689177, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246780, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -1461069734, + -923861827, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1133237808, + "Name": "Unique_Staff_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195407, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689175, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + 234326220, + 121749883, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1137981492, + "Name": "Unique_Staff_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193066, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689174, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247572, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 125900958, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1140353334, + "Name": "Unique_Staff_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192167, + "ItemTypesGBID": 140658708, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689172, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1461069734, + -553879927, + 2044719016, + -128393329, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 272052646, + "Name": "Unique_Wand_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 182074, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 275610409, + "Name": "Unique_Wand_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193355, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7600, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88666139, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 93, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 125900958, + -846894066, + -553879927, + 505853881, + -1 + ], + "MaxAffixLevel": [ + 36, + 36, + 36, + 36, + 36, + 36 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 270866725, + "Name": "Unique_Wand_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 182071, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667228, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1256761000, + 125900958, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 307630276, + "Name": "Unique_Wand_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 181995, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667231, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": 1196, + "SNOParam": 71548, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 2044719016, + 125900958, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 279168172, + "Name": "Unique_Wand_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 182081, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667232, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 311188039, + "Name": "Unique_Wand_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 181982, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667234, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248686, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 505853881, + 810509126, + 1791554648, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1660292081, + "Name": "Unique_Mojo_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 194995, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + 143839492, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1659106160, + "Name": "Unique_Mojo_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 194988, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136815386, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1661478002, + "Name": "Unique_Mojo_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 194991, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814297, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1200, + "SNOParam": 102573, + "Formula": [] + }, + { + "AttributeId": 1200, + "SNOParam": 30624, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -1299951557, + 143839492, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 57, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1667407607, + "Name": "Unique_Mojo_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192468, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814295, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1076, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 949340468, + -553879927, + -1823379498, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1666221686, + "Name": "Unique_Mojo_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 191278, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814294, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -23927138, + -1, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -441581599, + "Name": "Unique_Orb_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 184199, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 4, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1907454216, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -442767520, + "Name": "Unique_Orb_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195127, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905180566, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -443953441, + "Name": "Unique_Orb_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195325, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 243, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 243, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": 243, + "SNOParam": 5, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + -553879927, + -846894066, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -446325283, + "Name": "Unique_Orb_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192320, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181656, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1200, + "SNOParam": 168344, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + 2111229381, + -553879927, + -1823379498, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1652477335, + "Name": "Unique_Quiver_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197625, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1657221019, + "Name": "Unique_Quiver_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197629, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539236303, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + -1, + 143839492, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1656035098, + "Name": "Unique_Quiver_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197628, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 99, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 32, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237389, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 33, + 33, + 33, + 33, + 33, + 33 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1654849177, + "Name": "Unique_Quiver_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197627, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237391, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -923861827, + -1604369412, + 1132489149, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1651291414, + "Name": "Unique_Quiver_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197624, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237393, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 512004501, + 112679, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1653663256, + "Name": "Unique_Quiver_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197626, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539238481, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1658406940, + "Name": "Unique_Quiver_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197630, + "ItemTypesGBID": 269990204, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539238482, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + -553879927, + 1132489149, + 143839492, + -1823379498, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1245538828, + "Name": "Unique_Shield_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 152667, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815806862, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1277558695, + "Name": "Unique_Shield_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 152666, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7600, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815807947, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 3718951, + -1802869037, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 36, + 36, + 36, + 36, + 36, + 36 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1281116458, + "Name": "Unique_Shield_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 61550, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 143839492, + -843477631, + 2076777148, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1276372774, + "Name": "Unique_Shield_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 195389, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815809035, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247053, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -493913099, + 810509126, + 3718951, + 942999935, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1283488300, + "Name": "Unique_Shield_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197478, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -333092253, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1802869037, + 982068194, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1275186853, + "Name": "Unique_Shield_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 192484, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -330720411, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1802869037, + 2076777148, + -1299951557, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1468937152, + "Name": "Unique_Helm_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 220630, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 143839492, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1470123073, + "Name": "Unique_Helm_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 196024, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565454586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 3718951, + 59953577, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1476052678, + "Name": "Unique_Helm_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197037, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565455674, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 1589045967, + 1808801829, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1472494915, + "Name": "Unique_Helm_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 220549, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565455675, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 3718951, + 412443728, + -1976254587, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1471308994, + "Name": "Unique_Helm_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 198014, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456764, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 377, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246814, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + -926180037, + 810509126, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1508072545, + "Name": "Unique_Helm_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222889, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456764, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1474866757, + "Name": "Unique_Helm_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223577, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456765, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + 810509126, + -1976254587, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -464571730, + "Name": "Unique_Gloves_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197206, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1, + 810509126, + 982068194, + -1796946852, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507264886, + "Name": "Unique_Gloves_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197207, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533913215, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -500149360, + "Name": "Unique_Gloves_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205640, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912126, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + -553879927, + -1367325933, + 285196129, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468129493, + "Name": "Unique_Gloves_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205635, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912123, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + -1, + 512004501, + -250946460, + -1823379498, + 59953577 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 1 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -506078965, + "Name": "Unique_Gloves_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197205, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912122, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + -1, + -1907454216, + -1409407349, + 1223187383, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -504893044, + "Name": "Unique_Gloves_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205642, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912121, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 40042201, + 3718951, + 810509126, + -1976254587, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2039600961, + "Name": "Unique_Boots_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205620, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 6, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1600, + "CostAlt": 5, + "IdentifyCost": 18, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 3, + "CrafterRequiredLevel": 4, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 143839492, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 6, + 6, + 6, + 6, + 6, + 6 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2011138857, + "Name": "Unique_Boots_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205622, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4600, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880154, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 139520518, + -128393329, + -1409407349, + -1, + -1 + ], + "MaxAffixLevel": [ + 21, + 21, + 21, + 21, + 21, + 21 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2001651489, + "Name": "Unique_Boots_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197224, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140881242, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -250946460, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2006395173, + "Name": "Unique_Boots_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205621, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882329, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2008767015, + "Name": "Unique_Boots_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205624, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882333, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246442, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -1648110199, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2009952936, + "Name": "Unique_Boots_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222464, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1132, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1751678268, + 59953577, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1632842498, + "Name": "Unique_Belt_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193665, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2000, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 6, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 512004501, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 8, + 8, + 8, + 8, + 8, + 8 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1635214340, + "Name": "Unique_Belt_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193667, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6000, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 26, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733831364, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 28, + 28, + 28, + 28, + 28, + 28 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1669606049, + "Name": "Unique_Belt_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193671, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830279, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1212, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 3718951, + -128393329, + 810509126, + 1220289425, + -1 + ], + "MaxAffixLevel": [ + 50, + 35, + 50, + 35, + 35, + 35 + ], + "I38": [ + 0, + 1, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1631656577, + "Name": "Unique_Belt_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193664, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830278, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -250946460, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1639958024, + "Name": "Unique_Belt_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193669, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830276, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 3718951, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1634028419, + "Name": "Unique_Belt_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193666, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829191, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1636400261, + "Name": "Unique_Belt_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193668, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 143839492, + -1751678268, + -1, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1641143945, + "Name": "Unique_Belt_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193670, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1908006196, + "Name": "Unique_Bracer_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193686, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 3718951, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1905634354, + "Name": "Unique_Bracer_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193688, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5600, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 24, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875944874, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -1, + 59953577, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 26, + 26, + 26, + 26, + 26, + 26 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1909192117, + "Name": "Unique_Bracer_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193685, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875943789, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 359993717, + 139520518, + -1604369412, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1910378038, + "Name": "Unique_Bracer_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193684, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942698, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + 4029372, + -1751678268, + -128393329, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1911563959, + "Name": "Unique_Bracer_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193683, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942695, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1904448433, + "Name": "Unique_Bracer_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193692, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942696, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 3718951, + 679540618, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1906820275, + "Name": "Unique_Bracer_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193687, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942695, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 139520518, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1388294285, + "Name": "Unique_Chest_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197203, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4000, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 16, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 143839492, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 18, + 18, + 18, + 18, + 18, + 18 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1381178759, + "Name": "Unique_Chest_018_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205607, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 28, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612257709, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 512004501, + -529329636, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 30, + 30, + 30, + 30, + 30, + 30 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1390666127, + "Name": "Unique_Chest_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197204, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8000, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 37, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612258794, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 38, + 38, + 38, + 38, + 38, + 38 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1428615599, + "Name": "Unique_Chest_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205616, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612258797, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246515, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1589045967, + -529329636, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1422685994, + "Name": "Unique_Chest_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222455, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259884, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 93, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 339, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1379992838, + "Name": "Unique_Chest_019_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205609, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259885, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1427429678, + "Name": "Unique_Chest_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205608, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1133, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -529329636, + -2133546597, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1673392474, + "Name": "Unique_Pants_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197220, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247009, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 3718951, + 1220289425, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1679322079, + "Name": "Unique_Pants_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 209059, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731047, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 143839492, + 139520518, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1680508000, + "Name": "Unique_Pants_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 209057, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731045, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 3718951, + -926180037, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1675764316, + "Name": "Unique_Pants_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222476, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729957, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1674578395, + "Name": "Unique_Pants_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197216, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729955, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1751678268, + 4029372, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1675078496, + "Name": "Unique_Shoulder_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 198573, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 3718951, + -128393329, + 338507747, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1676264417, + "Name": "Unique_Shoulder_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 200310, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492428, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 339, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247619, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 3718951, + 982068194, + -1604369412, + -1, + -1 + ], + "MaxAffixLevel": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1682194022, + "Name": "Unique_Shoulder_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223619, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492430, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1677450338, + "Name": "Unique_Shoulder_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 201325, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492432, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 3718951, + 982068194, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -152381310, + "Name": "Unique_SpiritStone_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222171, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242895467, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -1, + 143839492, + 1220289425, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -153567231, + "Name": "Unique_SpiritStone_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222169, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4600, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242895466, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1, + 4029372, + -1625420711, + -1, + -1 + ], + "MaxAffixLevel": [ + 21, + 21, + 21, + 21, + 21, + 21 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -155939073, + "Name": "Unique_SpiritStone_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222172, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894379, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -208849191, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -154753152, + "Name": "Unique_SpiritStone_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222173, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894377, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -1, + -1588784387, + -923861827, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -157124994, + "Name": "Unique_SpiritStone_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222306, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894376, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -208849191, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -151195389, + "Name": "Unique_SpiritStone_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222170, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893290, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + 186163290, + -1588784387, + -1, + -1 + ], + "MaxAffixLevel": [ + 57, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -150009468, + "Name": "Unique_SpiritStone_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222305, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893288, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 143839492, + -1625420711, + 810509126, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -148823547, + "Name": "Unique_SpiritStone_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221572, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -208849191, + -529329636, + -1588784387, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 657823681, + "Name": "Unique_VoodooMask_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221167, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1, + 982068194, + 949340468, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 656637760, + "Name": "Unique_VoodooMask_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 204136, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620034069, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 653079997, + "Name": "Unique_VoodooMask_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221166, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036244, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 251572, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1604369412, + 4029372, + 949340468, + -1, + -1 + ], + "MaxAffixLevel": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 651894076, + "Name": "Unique_VoodooMask_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221382, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036247, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -1, + -926180037, + -553879927, + 1223187383, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 660195523, + "Name": "Unique_VoodooMask_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221168, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036247, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 585244974, + 493718975, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -26197398, + "Name": "Unique_WizardHat_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 218681, + "ItemTypesGBID": -1499089042, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 143839492, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -28569240, + "Name": "Unique_WizardHat_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 224908, + "ItemTypesGBID": -1499089042, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755623809, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 287834549, + -250946460, + 296723815, + -1, + -1 + ], + "MaxAffixLevel": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -25011477, + "Name": "Unique_WizardHat_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 220694, + "ItemTypesGBID": -1499089042, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755623811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247090, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + 40042201, + 512004501, + 186163290, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1126656772, + "Name": "Unique_Cloak_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223149, + "ItemTypesGBID": 121411562, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40855421, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1131400456, + "Name": "Unique_Cloak_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223150, + "ItemTypesGBID": 121411562, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 810509126, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1127842693, + "Name": "Unique_Cloak_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223151, + "ItemTypesGBID": 121411562, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40857599, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -529329636, + 963606610, + 139520518, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1844946491, + "Name": "Unique_BarbBelt_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212232, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4600, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 3718951, + 699281021, + -1, + -1 + ], + "MaxAffixLevel": [ + 21, + 21, + 21, + 21, + 21, + 21 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1847318333, + "Name": "Unique_BarbBelt_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193676, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6200, + "CostAlt": 5, + "IdentifyCost": 87, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 27, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112155409, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1096375804, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 29, + 29, + 29, + 29, + 29, + 29 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1848504254, + "Name": "Unique_BarbBelt_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193674, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156495, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 699281021, + 3718951, + -553879927, + 2076777148, + -1738242886, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 1, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1842574649, + "Name": "Unique_BarbBelt_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193673, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156497, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1802869037, + 810509126, + -1823379498, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1841388728, + "Name": "Unique_BarbBelt_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193672, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11200, + "CostAlt": 5, + "IdentifyCost": 162, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156498, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -843477631, + 3718951, + -553879927, + -1, + -1299951557, + -1 + ], + "MaxAffixLevel": [ + 54, + 54, + 54, + 54, + 54, + 54 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1843760570, + "Name": "Unique_BarbBelt_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212230, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11800, + "CostAlt": 5, + "IdentifyCost": 171, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157584, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246363, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1565068128, + 3718951, + -553879927, + 143839492, + 1434483431, + -1 + ], + "MaxAffixLevel": [ + 57, + 57, + 57, + 57, + 57, + 57 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1849690175, + "Name": "Unique_BarbBelt_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193675, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + 1589045967, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1846132412, + "Name": "Unique_BarbBelt_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212234, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157587, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 1434483431, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 844574212, + "Name": "Unique_Amulet_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197813, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246750, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880151842, + "Name": "Unique_Amulet_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197819, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 5, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5800, + "CostAlt": 5, + "IdentifyCost": 81, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 25, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228621, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 27, + 27, + 27, + 27, + 27, + 27 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 884895526, + "Name": "Unique_Amulet_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197823, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228622, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1907454216, + -1, + 512004501, + -1, + -843477631, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 851689738, + "Name": "Unique_Amulet_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197818, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 99, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 32, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228622, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1, + 1223187383, + 1220289425, + -250946460, + -1 + ], + "MaxAffixLevel": [ + 33, + 33, + 33, + 33, + 33, + 33 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 882523684, + "Name": "Unique_Amulet_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197821, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8200, + "CostAlt": 5, + "IdentifyCost": 117, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 38, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228623, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -1648110199, + -1796946852, + -1, + -1 + ], + "MaxAffixLevel": [ + 39, + 39, + 39, + 39, + 39, + 39 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 883709605, + "Name": "Unique_Amulet_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197822, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228625, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -553879927, + -1711754382, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 52, + 52, + 52, + 52 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 842202370, + "Name": "Unique_Amulet_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 193659, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228649, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 143839492, + 139520518, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 843388291, + "Name": "Unique_Amulet_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197812, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 412443728, + -1751678268, + 512004501, + 59953577, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 846946054, + "Name": "Unique_Amulet_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197815, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 1616088365, + 512004501, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 848131975, + "Name": "Unique_Amulet_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197817, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 143839492, + 679540618, + -2133546597, + -1604369412, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 886081447, + "Name": "Unique_Amulet_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197824, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 40042201, + -1, + -1, + -493913099, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 845760133, + "Name": "Unique_Amulet_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197814, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1, + -128393329, + 982068194, + 942999935, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1501495566, + "Name": "Unique_Ring_018_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212586, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5600, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 24, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 60, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1589045967, + 1616088365, + -843477631, + -1, + -1 + ], + "MaxAffixLevel": [ + 26, + 26, + 26, + 26, + 26, + 26 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1547746485, + "Name": "Unique_Ring_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197835, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967284, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 78, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1076, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1470661620, + "Name": "Unique_Ring_021_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212546, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4400, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 18, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967285, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 982068194, + 942999935, + -1, + -1 + ], + "MaxAffixLevel": [ + 20, + 20, + 20, + 20, + 20, + 20 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1544188722, + "Name": "Unique_Ring_005_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197839, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5200, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 22, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 24, + 24, + 24, + 24, + 24, + 24 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1539445038, + "Name": "Unique_Ring_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212602, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967312, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 143839492, + 810509126, + 285196129, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1543002801, + "Name": "Unique_Ring_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212589, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7800, + "CostAlt": 5, + "IdentifyCost": 111, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 36, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967316, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 1589045967, + -1894589241, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 37, + 37, + 37, + 37, + 37, + 37 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1545374643, + "Name": "Unique_Ring_004_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197837, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8800, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 41, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967317, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247797, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1751678268, + 1223187383, + -1409407349, + -1, + -1 + ], + "MaxAffixLevel": [ + 42, + 42, + 42, + 42, + 42, + 42 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1540630959, + "Name": "Unique_Ring_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212590, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967319, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 143839492, + 3718951, + 2076777148, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1468289778, + "Name": "Unique_Ring_023_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212588, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11400, + "CostAlt": 5, + "IdentifyCost": 165, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967320, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 96, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 40042201, + 285196129, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 55, + 55, + 55, + 55, + 55 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1541816880, + "Name": "Unique_Ring_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212601, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967321, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -1802869037, + 143839492, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1471847541, + "Name": "Unique_Ring_020_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212603, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12200, + "CostAlt": 5, + "IdentifyCost": 177, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248537, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 512004501, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 59, + 59, + 59, + 59, + 59, + 59 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1548932406, + "Name": "Unique_Ring_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197834, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248880, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + -843477631, + 512004501, + 112679, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1546560564, + "Name": "Unique_Ring_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197836, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 3718951, + 1620834581, + 810509126, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1469475699, + "Name": "Unique_Ring_022_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212618, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -1751678268, + 3718951, + 512004501, + -493913099, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1502681487, + "Name": "Unique_Ring_017_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212648, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1751678268, + 143839492, + 4029372, + 3718951, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1500309645, + "Name": "Unique_Ring_019_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212582, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 942999935, + -493913099, + -1542055954, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1510982934, + "Name": "Unique_Ring_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212581, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967318, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -1751678268, + -1823379498, + 512004501, + 1616088365, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691673084, + "Name": "Unique_Mighty_1H_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 208771, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068682, + "SNOSet": -1830541342, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + 512004501, + -553879927, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1690487163, + "Name": "Unique_Mighty_1H_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 208775, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068682, + "SNOSet": -1830541342, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -553879927, + 1350281776, + 2044719016, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -879775403, + "Name": "Unique_HandXBow_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 211745, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389484, + "SNOSet": -1829355421, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1951651227, + 1616088365, + -1256761000, + 2044719016, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -878589482, + "Name": "Unique_HandXBow_002_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 211749, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389484, + "SNOSet": -1829355421, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + 1616088365, + -553879927, + 2044719016, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 310002118, + "Name": "Unique_Wand_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 210479, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667234, + "SNOSet": -1828169500, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + -553879927, + -669278121, + -1461069734, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -407189890, + "Name": "Unique_Orb_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212277, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181656, + "SNOSet": -1828169500, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 2111229381, + -846894066, + 810509126, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494117648, + "Name": "Unique_Fist_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 208898, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -1826983579, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 1791554648, + 512004501, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495303569, + "Name": "Unique_Fist_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 208996, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -1826983579, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + -1625420711, + 1791554648, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -659943125, + "Name": "Unique_CeremonialDagger_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223365, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267400, + "SNOSet": -1825797658, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 1978556068, + 234326220, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1695869711, + "Name": "Unique_Mojo_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 210993, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814294, + "SNOSet": -1825797658, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + 121749850, + -23927138, + 59953577, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1478424520, + "Name": "Unique_Helm_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 210851, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456765, + "SNOSet": -1824611737, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1894589241, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -877403561, + "Name": "Unique_HandXBow_003_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 210874, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389484, + "SNOSet": -1824611737, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + -1823379498, + 810509126, + -812845450, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132586377, + "Name": "Unique_Cloak_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 208934, + "ItemTypesGBID": 121411562, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40857599, + "SNOSet": -1824611737, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 963606610, + -553879927, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509797013, + "Name": "Unique_Ring_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212545, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967348, + "SNOSet": -1824611737, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2040786882, + "Name": "Unique_Boots_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197223, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": -1824611737, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1802869037, + 139520518, + 3718951, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1477238599, + "Name": "Unique_Helm_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 210265, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456765, + "SNOSet": -1823425816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1802869037, + -1823379498, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1623871707, + "Name": "Unique_Mighty_2H_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 210678, + "ItemTypesGBID": -1488678058, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329204075, + "SNOSet": -1823425816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 1616088365, + 2044719016, + -394192022, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1387108364, + "Name": "Unique_Chest_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205613, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -1823425816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1976254587, + 3718951, + 359993717, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1850876096, + "Name": "Unique_BarbBelt_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212235, + "ItemTypesGBID": -479768568, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157587, + "SNOSet": -1823425816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + -529329636, + 699281021, + 1434483431, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -498963439, + "Name": "Unique_Gloves_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205631, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912121, + "SNOSet": -1823425816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -1823379498, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2041972803, + "Name": "Unique_Boots_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205625, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": -1823425816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + -250946460, + 139520518, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -406003969, + "Name": "Unique_Orb_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212780, + "ItemTypesGBID": 124739, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181656, + "SNOSet": -1822239895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + -553879927, + 2111229381, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1506886624, + "Name": "Unique_Helm_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 211531, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456765, + "SNOSet": -1822239895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -1976254587, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1385922443, + "Name": "Unique_Chest_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 211626, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -1822239895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 296723815, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1637586182, + "Name": "Unique_Belt_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212657, + "ItemTypesGBID": 3635495, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -1822239895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -553879927, + -1, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 849317896, + "Name": "Unique_Amulet_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222486, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228653, + "SNOSet": -1822239895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + -1542055954, + 296723815, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -147637626, + "Name": "Unique_SpiritStone_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222307, + "ItemTypesGBID": 576647032, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893287, + "SNOSet": -1821053974, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -923861827, + -553879927, + -1976254587, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1052739197, + "Name": "Unique_CombatStaff_2H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212208, + "ItemTypesGBID": -1620551894, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751034, + "SNOSet": -1821053974, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 783140317, + 1616088365, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1384736522, + "Name": "Unique_Chest_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205614, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -1821053974, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 59953577, + -1802869037, + -923861827, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1638772103, + "Name": "Unique_Belt_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222487, + "ItemTypesGBID": 3635495, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -1821053974, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1711754382, + 3718951, + -250946460, + -1823379498, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1672206553, + "Name": "Unique_Pants_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205646, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729955, + "SNOSet": -1821053974, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 810509126, + -1823379498, + 139520518, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 659009602, + "Name": "Unique_VoodooMask_007_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221202, + "ItemTypesGBID": -333341566, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036247, + "SNOSet": -1792591870, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -1976254587, + 949340468, + 296723815, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1383550601, + "Name": "Unique_Chest_016_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205615, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -1792591870, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + -553879927, + -529329636, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1697055632, + "Name": "Unique_Mojo_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 216525, + "ItemTypesGBID": 4041621, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814294, + "SNOSet": -1792591870, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + -553879927, + -2133546597, + -23927138, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1508611092, + "Name": "Unique_Ring_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212579, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967348, + "SNOSet": -1792591870, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2043158724, + "Name": "Unique_Boots_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205627, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": -1792591870, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + 139520518, + 1438797838, + -1, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 887267368, + "Name": "Unique_Amulet_016_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 224189, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228653, + "SNOSet": -1789034107, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 512004501, + 810509126, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2050274250, + "Name": "Unique_Boots_019_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222463, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": -1789034107, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 3718951, + 139520518, + -1299951557, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -344616293, + "Name": "Unique_ChestArmor_028_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222456, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -1789034107, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + 143839492, + -843477631, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1675535654, + "Name": "Unique_Belt_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 224191, + "ItemTypesGBID": 3635495, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -1789034107, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -1751678268, + -128393329, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1639000765, + "Name": "Unique_Pants_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222477, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729955, + "SNOSet": -1789034107, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 40042201, + 4029372, + 512004501, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 850503817, + "Name": "Unique_Amulet_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222490, + "ItemTypesGBID": -365243096, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228653, + "SNOSet": -1791405949, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 1589045967, + 59953577, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507425171, + "Name": "Unique_Ring_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212587, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967348, + "SNOSet": -1791405949, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 139520518, + 982068194, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1506239250, + "Name": "Unique_Ring_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212650, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967348, + "SNOSet": -1790220028, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -1751678268, + -1823379498, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1505053329, + "Name": "Unique_Ring_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 212651, + "ItemTypesGBID": 4214896, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967348, + "SNOSet": -1790220028, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1299951557, + -1751678268, + -529329636, + 982068194, + -1823379498, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1345601129, + "Name": "Unique_Chest_025_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197199, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612257708, + "SNOSet": -2067399821, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681008101, + "Name": "Unique_Shoulder_006_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222948, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365490252, + "SNOSet": -2067399821, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -121415895, + "Name": "Unique_Sword_1H_018_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223408, + "ItemTypesGBID": 140782159, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938914, + "SNOSet": -2067399821, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1509258466, + "Name": "Unique_Helm_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222559, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565454586, + "SNOSet": -2066213900, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1642558528, + "Name": "Unique_Pants_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197218, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512732134, + "SNOSet": -2066213900, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -463385809, + "Name": "Unique_Gloves_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197210, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533914300, + "SNOSet": -2066213900, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2045530566, + "Name": "Unique_Boots_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197225, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880155, + "SNOSet": -2066213900, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2047902408, + "Name": "Unique_Boots_017_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197221, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880156, + "SNOSet": -670706135, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1671977891, + "Name": "Unique_Belt_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222974, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830280, + "SNOSet": -670706135, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1640186686, + "Name": "Unique_Pants_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197214, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731049, + "SNOSet": -670706135, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1683379943, + "Name": "Unique_Shoulder_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 224051, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365491340, + "SNOSet": -669520214, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1902076591, + "Name": "Unique_Bracer_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222972, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875943787, + "SNOSet": -669520214, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1344415208, + "Name": "Unique_Chest_026_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197193, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612258795, + "SNOSet": -669520214, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1511630308, + "Name": "Unique_Helm_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223972, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565455673, + "SNOSet": -669520214, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1721329415, + "Name": "Unique_Shoulder_017_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 225132, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365491342, + "SNOSet": 1019838895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -497777518, + "Name": "Unique_Gloves_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205636, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533913211, + "SNOSet": 1019838895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1671020632, + "Name": "Unique_Pants_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 209054, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731045, + "SNOSet": 1019838895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2044344645, + "Name": "Unique_Boots_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205618, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140881244, + "SNOSet": 1019838895, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1873614487, + "Name": "Unique_Bracer_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222981, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942700, + "SNOSet": 1021024816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1673163812, + "Name": "Unique_Belt_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222976, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829191, + "SNOSet": 1021024816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1512816229, + "Name": "Unique_Helm_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221518, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456760, + "SNOSet": 1021024816, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1343229287, + "Name": "Unique_Chest_027_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205612, + "ItemTypesGBID": -1028103400, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -492453061, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1674349733, + "Name": "Unique_Belt_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222740, + "ItemTypesGBID": -948083356, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -492453061, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1637814844, + "Name": "Unique_Pants_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205644, + "ItemTypesGBID": 3994699, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729955, + "SNOSet": -492453061, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1684565864, + "Name": "Unique_Shoulder_009_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 224397, + "ItemTypesGBID": -940830407, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492432, + "SNOSet": -492453061, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1872428566, + "Name": "Unique_Bracer_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 222741, + "ItemTypesGBID": -1999984446, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942695, + "SNOSet": -492453061, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -461013967, + "Name": "Unique_Gloves_017_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205632, + "ItemTypesGBID": -131821392, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912121, + "SNOSet": -491267140, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2049088329, + "Name": "Unique_Boots_018_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 205626, + "ItemTypesGBID": 120334087, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": -491267140, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1514002150, + "Name": "Unique_Helm_016_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 221624, + "ItemTypesGBID": 3851110, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456765, + "SNOSet": -491267140, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1244352907, + "Name": "Unique_Shield_012_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223758, + "ItemTypesGBID": 332825721, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -330720411, + "SNOSet": -490081219, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1685743479, + "Name": "Unique_Mighty_1H_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223627, + "ItemTypesGBID": -1488678091, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068682, + "SNOSet": -490081219, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 317117644, + "Name": "Unique_Wand_018_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 224184, + "ItemTypesGBID": 4385866, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667234, + "SNOSet": -490081219, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -630295100, + "Name": "Unique_CeremonialDagger_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223396, + "ItemTypesGBID": -199811863, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267400, + "SNOSet": -490081219, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -834710405, + "Name": "Unique_HandXBow_016_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223763, + "ItemTypesGBID": 763102523, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389484, + "SNOSet": -490081219, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500047253, + "Name": "Unique_Fist_015_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223526, + "ItemTypesGBID": -2094596416, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -490081219, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -246559245, + "Name": "Unique_Axe_1H_013_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 223461, + "ItemTypesGBID": 109694, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414574, + "SNOSet": -490081219, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -85566517, + "Name": "Unique_Dagger_008_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 189899, + "ItemTypesGBID": -262576534, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -1751678268, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -793787792, + "Name": "Unique_Offhand_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 200476, + "ItemTypesGBID": -262576534, + "Flags": 16917009, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303414213, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -168852735, + "Name": "Unique_Sword_1H_001_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 9, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1147, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 231, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 222, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 1208, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 197, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 3, + 3, + 3, + 3, + 3, + 3 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -130903263, + "Name": "Unique_Sword_1H_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 110952, + "ItemTypesGBID": 140782159, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938919, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1791554648, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -90581949, + "Name": "Unique_Sword_1H_021_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 16917041, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937832, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1808801829, + 40042201, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -58358202, + "Name": "Unique_Sword_2H_014_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 59668, + "ItemTypesGBID": -1307049751, + "Flags": 16917042, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231802434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1311456156, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 609306312, + "Name": "Unique_Mace_1H_010_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 187952, + "ItemTypesGBID": 4026134, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 22, + 22, + 22, + 22, + 22, + 22 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 881337763, + "Name": "Unique_Amulet_011_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 197820, + "ItemTypesGBID": -365243096, + "Flags": 16917010, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228624, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248136, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1223187383, + -1751678268, + 1438797838, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1467103857, + "Name": "Unique_Ring_024_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 260327, + "ItemTypesGBID": 4214896, + "Flags": 16918609, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967348, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 377085, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 78, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 1564584523, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -91493678, + "Name": "Unique_Dagger_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195174, + "ItemTypesGBID": -262576534, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1751678268, + -1256761000, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -86749994, + "Name": "Unique_Dagger_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221313, + "ItemTypesGBID": -262576534, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303414213, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1133, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245836, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1177564965, + 1616088365, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -92679599, + "Name": "Unique_Dagger_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192579, + "ItemTypesGBID": -262576534, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413123, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 234326220, + 1978556068, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -87935915, + "Name": "Unique_Dagger_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195655, + "ItemTypesGBID": -262576534, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413120, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 1, + 1, + 1, + 1, + 1, + 1 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -55916048, + "Name": "Unique_Dagger_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 219329, + "ItemTypesGBID": -262576534, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1303413118, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245837, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + 125900958, + -529329636, + 2044719016, + 810509126, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -667056207, + "Name": "Unique_CeremonialDagger_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193433, + "ItemTypesGBID": -199811863, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 125900958, + 2044719016, + 493718975, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -663498444, + "Name": "Unique_CeremonialDagger_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192540, + "ItemTypesGBID": -199811863, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635269580, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -665870286, + "Name": "Unique_CeremonialDagger_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222978, + "ItemTypesGBID": -199811863, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635268492, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1604369412, + 59953577, + 1616088365, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -669428049, + "Name": "Unique_CeremonialDagger_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 196250, + "ItemTypesGBID": -199811863, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267405, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 234326220, + -553879927, + 810509126, + -493913099, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -668242128, + "Name": "Unique_CeremonialDagger_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 209246, + "ItemTypesGBID": -199811863, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267402, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245835, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 4029372, + 1350281776, + 949340468, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -661126602, + "Name": "Unique_CeremonialDagger_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195370, + "ItemTypesGBID": -199811863, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -635267400, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1200, + "SNOParam": 67600, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247896, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1461069734, + 982068194, + -493913099, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -122599372, + "Name": "Unique_Sword_1H_017_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 115140, + "ItemTypesGBID": 140782159, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + 1616088365, + -976182127, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -167664370, + "Name": "Unique_Sword_1H_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 270978, + "ItemTypesGBID": 140782159, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937830, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1751678268, + 234326220, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -166478449, + "Name": "Unique_Sword_1H_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 194481, + "ItemTypesGBID": 140782159, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270937827, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + 125900958, + -553879927, + 1978556068, + 810509126, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -126157135, + "Name": "Unique_Sword_1H_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 185397, + "ItemTypesGBID": 140782159, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1461069734, + -1751678268, + 2044719016, + 2076777148, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -165292528, + "Name": "Unique_Sword_1H_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 182347, + "ItemTypesGBID": 140782159, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247662, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1751678268, + 1350281776, + 2044719016, + 1620834581, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -120227530, + "Name": "Unique_Sword_1H_019_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 270977, + "ItemTypesGBID": 140782159, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936738, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -161734765, + "Name": "Unique_Sword_1H_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 115141, + "ItemTypesGBID": 140782159, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936737, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1133, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249967, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 143839492, + 1616088365, + -1, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -129714898, + "Name": "Unique_Sword_1H_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 189552, + "ItemTypesGBID": 140782159, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936736, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 40042201, + -1461069734, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128528977, + "Name": "Unique_Sword_1H_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192511, + "ItemTypesGBID": 140782159, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -270936736, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 195, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249592, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -812845450, + 40042201, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -99862993, + "Name": "Unique_Sword_2H_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 59665, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1616088365, + 2044719016, + -1823379498, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -60727600, + "Name": "Unique_Sword_2H_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 198960, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231803523, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + 338507747, + 1589045967, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -97491151, + "Name": "Unique_Sword_2H_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 181511, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231802438, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247537, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 234326220, + -1751678268, + 121749883, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -61913521, + "Name": "Unique_Sword_2H_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 270979, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231802434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 338507747, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -93933388, + "Name": "Unique_Sword_2H_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 184184, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801349, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 1791554648, + -128393329, + 942999935, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -92747467, + "Name": "Unique_Sword_2H_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 184190, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801347, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1142, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 139520518, + 2044719016, + 810509126, + 1350281776, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -98677072, + "Name": "Unique_Sword_2H_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 181495, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 1616088365, + 2044719016, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -63099442, + "Name": "Unique_Sword_2H_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 184187, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249138, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1461069734, + -1751678268, + 1620834581, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -101048914, + "Name": "Unique_Sword_2H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 190360, + "ItemTypesGBID": -1307049751, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -231801345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1616088365, + 40042201, + 2044719016, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -285692194, + "Name": "Unique_Axe_1H_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 116386, + "ItemTypesGBID": 109694, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245854, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1177564965, + 810509126, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -284506273, + "Name": "Unique_Axe_1H_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 116387, + "ItemTypesGBID": 109694, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8600, + "CostAlt": 5, + "IdentifyCost": 123, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661413481, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 41, + 41, + 41, + 41, + 41, + 41 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -288064036, + "Name": "Unique_Axe_1H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 116388, + "ItemTypesGBID": 109694, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661413483, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1616088365, + -1823379498, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -282134431, + "Name": "Unique_Axe_1H_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 189973, + "ItemTypesGBID": 109694, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414571, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248484, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -1256761000, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -280948510, + "Name": "Unique_Axe_1H_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 181484, + "ItemTypesGBID": 109694, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414573, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246113, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1796946852, + -1461069734, + -1648110199, + 512004501, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -283320352, + "Name": "Unique_Axe_1H_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 116389, + "ItemTypesGBID": 109694, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1661414574, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246101, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + -1751678268, + 2044719016, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -217890817, + "Name": "Unique_Axe_2H_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 186560, + "ItemTypesGBID": 119458520, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + 4029372, + 139520518, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220262659, + "Name": "Unique_Axe_2H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 186494, + "ItemTypesGBID": 119458520, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700548872, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246118, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + 2044719016, + 1616088365, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -181127266, + "Name": "Unique_Axe_2H_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 191065, + "ItemTypesGBID": 119458520, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549962, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 237, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 229, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1461069734, + -1, + 40042201, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -182313187, + "Name": "Unique_Axe_2H_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 6329, + "ItemTypesGBID": 119458520, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549963, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248462, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -210775291, + "Name": "Unique_Axe_2H_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192887, + "ItemTypesGBID": 119458520, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1700549965, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -1751678268, + -1256761000, + -1976254587, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 572545205, + "Name": "Unique_Mace_1H_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 188185, + "ItemTypesGBID": 4026134, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246918, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 143839492, + 1791554648, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 576102968, + "Name": "Unique_Mace_1H_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 188169, + "ItemTypesGBID": 4026134, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025087, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 1616088365, + 341569830, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 578474810, + "Name": "Unique_Mace_1H_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 188189, + "ItemTypesGBID": 4026134, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025085, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 125900958, + 1978556068, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 573731126, + "Name": "Unique_Mace_1H_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 102665, + "ItemTypesGBID": 4026134, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656025083, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + -1256761000, + 341569830, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 579660731, + "Name": "Unique_Mace_1H_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 188158, + "ItemTypesGBID": 4026134, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023997, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 1589045967, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 580846652, + "Name": "Unique_Mace_1H_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 188177, + "ItemTypesGBID": 4026134, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023996, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 571359284, + "Name": "Unique_Mace_1H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 188181, + "ItemTypesGBID": 4026134, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023995, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1140, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + -1751678268, + 1616088365, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 610494677, + "Name": "Unique_Mace_1H_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 188173, + "ItemTypesGBID": 4026134, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1656023994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1751678268, + 1350281776, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 641532503, + "Name": "Unique_Mace_2H_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 59633, + "ItemTypesGBID": 89494384, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249958, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 2044719016, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 639160661, + "Name": "Unique_Mace_2H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 99227, + "ItemTypesGBID": 89494384, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616890781, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -812845450, + -1751678268, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 679481975, + "Name": "Unique_Mace_2H_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 191584, + "ItemTypesGBID": 89494384, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616889696, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 80228221, + 1616088365, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 677110133, + "Name": "Unique_Mace_2H_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 190840, + "ItemTypesGBID": 89494384, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616889693, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + 112679, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 645090266, + "Name": "Unique_Mace_2H_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 190868, + "ItemTypesGBID": 89494384, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888607, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 640346582, + "Name": "Unique_Mace_2H_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 190866, + "ItemTypesGBID": 89494384, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888603, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 512004501, + 2044719016, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 648648029, + "Name": "Unique_Mace_2H_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197717, + "ItemTypesGBID": 89494384, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1616888602, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247913, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1362485177, + 1791554648, + 810509126, + 186163290, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80365737, + "Name": "Unique_Polearm_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 196570, + "ItemTypesGBID": -1203595600, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 121749883, + 2044719016, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -77993895, + "Name": "Unique_Polearm_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 191570, + "ItemTypesGBID": -1203595600, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337762431, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 143839492, + -812845450, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -79179816, + "Name": "Unique_Polearm_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192569, + "ItemTypesGBID": -1203595600, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337761338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1604369412, + 1616088365, + 59953577, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -81551658, + "Name": "Unique_Polearm_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195491, + "ItemTypesGBID": -1203595600, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1337761335, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247641, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 80228221, + 1350281776, + 1978556068, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -152842716, + "Name": "Unique_Spear_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197095, + "ItemTypesGBID": 140519163, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + 1791554648, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -156400479, + "Name": "Unique_Spear_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 191446, + "ItemTypesGBID": 140519163, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101311666, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 1616088365, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -155214558, + "Name": "Unique_Spear_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 196638, + "ItemTypesGBID": 140519163, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101310576, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1196, + "SNOParam": 377452, + "Formula": [] + }, + { + "AttributeId": 1196, + "SNOParam": 377453, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -553879927, + 139520518, + -1802869037, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -154028637, + "Name": "Unique_Spear_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 194241, + "ItemTypesGBID": 140519163, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -101310575, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -529329636, + -2133546597, + 40042201, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1576114478, + "Name": "Unique_Bow_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 175580, + "ItemTypesGBID": 110504, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091504071, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1978556068, + 1791554648, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1573742636, + "Name": "Unique_Bow_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 220654, + "ItemTypesGBID": 110504, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091504069, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 22, + 22, + 22, + 22, + 22, + 22 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1572556715, + "Name": "Unique_Bow_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221938, + "ItemTypesGBID": 110504, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246605, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1604369412, + 2044719016, + 696647397, + -1461069734, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1580858162, + "Name": "Unique_Bow_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091502980, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + 1616088365, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1536979085, + "Name": "Unique_Bow_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 175582, + "ItemTypesGBID": 110504, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501894, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248817, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + 125900958, + 40042201, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1542908690, + "Name": "Unique_Bow_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221893, + "ItemTypesGBID": 110504, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501891, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1571370794, + "Name": "Unique_Bow_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192602, + "ItemTypesGBID": 110504, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2091501889, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1147, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 1978556068, + 810509126, + 2128734586, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -999431317, + "Name": "Unique_XBow_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 98163, + "ItemTypesGBID": -1338851342, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 810509126, + 125900958, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1005360922, + "Name": "Unique_XBow_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222286, + "ItemTypesGBID": -1338851342, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181031815, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247429, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -1751678268, + 942999935, + 3718951, + -1461069734, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -966225529, + "Name": "Unique_XBow_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 194219, + "ItemTypesGBID": -1338851342, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181032902, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248480, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 810509126, + -812845450, + 3718951, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1001803159, + "Name": "Unique_XBow_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 194957, + "ItemTypesGBID": -1338851342, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12000, + "CostAlt": 5, + "IdentifyCost": 174, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033989, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -965039608, + "Name": "Unique_XBow_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 204874, + "ItemTypesGBID": -1338851342, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033991, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247430, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 234326220, + 1438797838, + -926180037, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1004175001, + "Name": "Unique_XBow_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192836, + "ItemTypesGBID": -1338851342, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033992, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1148, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1149, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1150, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247577, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -1461069734, + 810509126, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1002989080, + "Name": "Unique_XBow_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221760, + "ItemTypesGBID": -1338851342, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 181033994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -1751678268, + 234326220, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -873843354, + "Name": "Unique_HandXBow_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195078, + "ItemTypesGBID": 763102523, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8800, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 41, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363390577, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 42, + 42, + 42, + 42, + 42, + 42 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -875029275, + "Name": "Unique_HandXBow_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192467, + "ItemTypesGBID": 763102523, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1616088365, + 1951651227, + 112679, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876215196, + "Name": "Unique_HandXBow_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192528, + "ItemTypesGBID": 763102523, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 810509126, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -872657433, + "Name": "Unique_HandXBow_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 196409, + "ItemTypesGBID": 763102523, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389485, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1350281776, + 810509126, + -553879927, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -839451645, + "Name": "Unique_HandXBow_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 225181, + "ItemTypesGBID": 763102523, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389484, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246678, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 2128734586, + 810509126, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1723690507, + "Name": "Unique_Mighty_1H_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192105, + "ItemTypesGBID": -1488678091, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246836, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + -812845450, + -98752611, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1689298798, + "Name": "Unique_Mighty_1H_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193486, + "ItemTypesGBID": -1488678091, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290067592, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 810509126, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1729620112, + "Name": "Unique_Mighty_1H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192705, + "ItemTypesGBID": -1488678091, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11400, + "CostAlt": 5, + "IdentifyCost": 165, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068679, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 55, + 55, + 55, + 55, + 55, + 55 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1724876428, + "Name": "Unique_Mighty_1H_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193611, + "ItemTypesGBID": -1488678091, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068682, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1096375804, + 1350281776, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1621497421, + "Name": "Unique_Mighty_2H_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 196308, + "ItemTypesGBID": -1488678058, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329201897, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1658260972, + "Name": "Unique_Mighty_2H_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195690, + "ItemTypesGBID": -1488678058, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329202983, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -812845450, + 699281021, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1661818735, + "Name": "Unique_Mighty_2H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193657, + "ItemTypesGBID": -1488678058, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329204073, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + 1350281776, + -553879927, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1655889130, + "Name": "Unique_Mighty_2H_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195138, + "ItemTypesGBID": -1488678058, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 329204075, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -394192022, + -1461069734, + -1976254587, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458542462, + "Name": "Unique_Fist_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 196472, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 234326220, + -1976254587, + 21694593, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1463286146, + "Name": "Unique_Fist_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 145850, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236604971, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1808801829, + -553879927, + 1616088365, + -1625420711, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497677855, + "Name": "Unique_Fist_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 130557, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236606059, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 1350281776, + 40042201, + -1588784387, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496491934, + "Name": "Unique_Fist_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 175938, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236606060, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 1616088365, + 696647397, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459728383, + "Name": "Unique_Fist_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193459, + "ItemTypesGBID": -2094596416, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607146, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1460914304, + "Name": "Unique_Fist_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 145849, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607147, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 234326220, + 982068194, + 2044719016, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1462100225, + "Name": "Unique_Fist_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 145851, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607150, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 186163290, + 1791554648, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1464472067, + "Name": "Unique_Fist_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 175939, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 1350281776, + 143839492, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1465657988, + "Name": "Unique_Fist_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 175937, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -553879927, + 810509126, + 1616088365, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1053927562, + "Name": "Unique_CombatStaff_2H_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195145, + "ItemTypesGBID": -1620551894, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + -1588784387, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1061043088, + "Name": "Unique_CombatStaff_2H_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 209214, + "ItemTypesGBID": -1620551894, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771748854, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1057485325, + "Name": "Unique_CombatStaff_2H_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197072, + "ItemTypesGBID": -1620551894, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771749941, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 125900958, + 810509126, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1059857167, + "Name": "Unique_CombatStaff_2H_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197068, + "ItemTypesGBID": -1620551894, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771749942, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247777, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + 1616088365, + 783140317, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1055113483, + "Name": "Unique_CombatStaff_2H_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192342, + "ItemTypesGBID": -1620551894, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751029, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1588784387, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1056299404, + "Name": "Unique_CombatStaff_2H_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 196880, + "ItemTypesGBID": -1620551894, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751032, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1062229009, + "Name": "Unique_CombatStaff_2H_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197065, + "ItemTypesGBID": -1620551894, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1771751034, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246562, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 783140317, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1139169857, + "Name": "Unique_Staff_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 184228, + "ItemTypesGBID": 140658708, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1350281776, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132054331, + "Name": "Unique_Staff_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 59612, + "ItemTypesGBID": 140658708, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7800, + "CostAlt": 5, + "IdentifyCost": 111, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 36, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115690266, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 37, + 37, + 37, + 37, + 37, + 37 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1130868410, + "Name": "Unique_Staff_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 59601, + "ItemTypesGBID": 140658708, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115690263, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -553879927, + 1791554648, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1136798015, + "Name": "Unique_Staff_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193832, + "ItemTypesGBID": 140658708, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689177, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246780, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -1461069734, + -923861827, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1133240252, + "Name": "Unique_Staff_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195407, + "ItemTypesGBID": 140658708, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689175, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + 234326220, + 121749883, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1137983936, + "Name": "Unique_Staff_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193066, + "ItemTypesGBID": 140658708, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689174, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247572, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 125900958, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1140355778, + "Name": "Unique_Staff_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192167, + "ItemTypesGBID": 140658708, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -2115689172, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1461069734, + -553879927, + 2044719016, + -128393329, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 272055090, + "Name": "Unique_Wand_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 182074, + "ItemTypesGBID": 4385866, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 275612853, + "Name": "Unique_Wand_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193355, + "ItemTypesGBID": 4385866, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88666139, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 93, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 125900958, + -846894066, + -553879927, + 505853881, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 270869169, + "Name": "Unique_Wand_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 182071, + "ItemTypesGBID": 4385866, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667228, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1256761000, + 125900958, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 307632720, + "Name": "Unique_Wand_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 181995, + "ItemTypesGBID": 4385866, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667231, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": 1196, + "SNOParam": 71548, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 2044719016, + 125900958, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 279170616, + "Name": "Unique_Wand_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 182081, + "ItemTypesGBID": 4385866, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667232, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 311190483, + "Name": "Unique_Wand_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 181982, + "ItemTypesGBID": 4385866, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667234, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248686, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 505853881, + 810509126, + 1791554648, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1660294525, + "Name": "Unique_Mojo_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 194995, + "ItemTypesGBID": 4041621, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + 143839492, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1659108604, + "Name": "Unique_Mojo_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 194988, + "ItemTypesGBID": 4041621, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136815386, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1661480446, + "Name": "Unique_Mojo_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 194991, + "ItemTypesGBID": 4041621, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814297, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1200, + "SNOParam": 102573, + "Formula": [] + }, + { + "AttributeId": 1200, + "SNOParam": 30624, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -1299951557, + 143839492, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1667410051, + "Name": "Unique_Mojo_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192468, + "ItemTypesGBID": 4041621, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814295, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1076, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 949340468, + -553879927, + -1823379498, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1666224130, + "Name": "Unique_Mojo_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 191278, + "ItemTypesGBID": 4041621, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -136814294, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -23927138, + -1, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -441579155, + "Name": "Unique_Orb_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 184199, + "ItemTypesGBID": 124739, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 4, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1907454216, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -442765076, + "Name": "Unique_Orb_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195127, + "ItemTypesGBID": 124739, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905180566, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -443950997, + "Name": "Unique_Orb_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195325, + "ItemTypesGBID": 124739, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 243, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 243, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": 243, + "SNOParam": 5, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + -553879927, + -846894066, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -446322839, + "Name": "Unique_Orb_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192320, + "ItemTypesGBID": 124739, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181656, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1200, + "SNOParam": 168344, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + 2111229381, + -553879927, + -1823379498, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1652479779, + "Name": "Unique_Quiver_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197625, + "ItemTypesGBID": 269990204, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1657223463, + "Name": "Unique_Quiver_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197629, + "ItemTypesGBID": 269990204, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539236303, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + -1, + 143839492, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1656037542, + "Name": "Unique_Quiver_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197628, + "ItemTypesGBID": 269990204, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237389, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1654851621, + "Name": "Unique_Quiver_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197627, + "ItemTypesGBID": 269990204, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237391, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -923861827, + -1604369412, + 1132489149, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1651293858, + "Name": "Unique_Quiver_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197624, + "ItemTypesGBID": 269990204, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539237393, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 512004501, + 112679, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1653665700, + "Name": "Unique_Quiver_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197626, + "ItemTypesGBID": 269990204, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539238481, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1658409384, + "Name": "Unique_Quiver_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197630, + "ItemTypesGBID": 269990204, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1539238482, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + -553879927, + 1132489149, + 143839492, + -1823379498, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1245536384, + "Name": "Unique_Shield_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 152667, + "ItemTypesGBID": 332825721, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815806862, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1277556251, + "Name": "Unique_Shield_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 152666, + "ItemTypesGBID": 332825721, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815807947, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 3718951, + -1802869037, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1281114014, + "Name": "Unique_Shield_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 61550, + "ItemTypesGBID": 332825721, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 143839492, + -843477631, + 2076777148, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1276370330, + "Name": "Unique_Shield_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 195389, + "ItemTypesGBID": 332825721, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1815809035, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247053, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -493913099, + 810509126, + 3718951, + 942999935, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1283485856, + "Name": "Unique_Shield_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197478, + "ItemTypesGBID": 332825721, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -333092253, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1, + 982068194, + 59953577, + -1859873873, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1275184409, + "Name": "Unique_Shield_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 192484, + "ItemTypesGBID": 332825721, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -330720411, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1299951557, + 2076777148, + -1859873874, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 0, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1468939596, + "Name": "Unique_Helm_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 220630, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 143839492, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1470125517, + "Name": "Unique_Helm_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 196024, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565454586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 3718951, + 59953577, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1476055122, + "Name": "Unique_Helm_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197037, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565455674, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 1589045967, + 1808801829, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1472497359, + "Name": "Unique_Helm_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 220549, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565455675, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 3718951, + 412443728, + -1976254587, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1471311438, + "Name": "Unique_Helm_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 198014, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456764, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 377, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246814, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + -926180037, + 810509126, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1508074989, + "Name": "Unique_Helm_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222889, + "ItemTypesGBID": 3851110, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456764, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1474869201, + "Name": "Unique_Helm_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223577, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1565456765, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + 810509126, + -1976254587, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -464569286, + "Name": "Unique_Gloves_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197206, + "ItemTypesGBID": -131821392, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1, + 810509126, + 982068194, + -1796946852, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507262442, + "Name": "Unique_Gloves_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197207, + "ItemTypesGBID": -131821392, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 105, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533913215, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 35, + 35, + 35, + 35, + 35, + 35 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -500146916, + "Name": "Unique_Gloves_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205640, + "ItemTypesGBID": -131821392, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912126, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + -553879927, + -1367325933, + 285196129, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468127049, + "Name": "Unique_Gloves_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205635, + "ItemTypesGBID": -131821392, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912123, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + -1, + 512004501, + -250946460, + -1823379498, + 59953577 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 1 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -506076521, + "Name": "Unique_Gloves_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197205, + "ItemTypesGBID": -131821392, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912122, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 3718951, + -1, + -1907454216, + -1409407349, + 1223187383, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -504890600, + "Name": "Unique_Gloves_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205642, + "ItemTypesGBID": -131821392, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1533912121, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 40042201, + 3718951, + 810509126, + -1976254587, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2039603405, + "Name": "Unique_Boots_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205620, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 143839492, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2011141301, + "Name": "Unique_Boots_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205622, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140880154, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 139520518, + -128393329, + -1409407349, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2001653933, + "Name": "Unique_Boots_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197224, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140881242, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -250946460, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2006397617, + "Name": "Unique_Boots_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205621, + "ItemTypesGBID": 120334087, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882329, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2008769459, + "Name": "Unique_Boots_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205624, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882333, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246442, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -1648110199, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2009955380, + "Name": "Unique_Boots_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222464, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2140882334, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1132, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1751678268, + 59953577, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1632844942, + "Name": "Unique_Belt_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193665, + "ItemTypesGBID": -948083356, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 512004501, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1635216784, + "Name": "Unique_Belt_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193667, + "ItemTypesGBID": -948083356, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6000, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 26, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733831364, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 28, + 28, + 28, + 28, + 28, + 28 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1669608493, + "Name": "Unique_Belt_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193671, + "ItemTypesGBID": -948083356, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830279, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1212, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 3718951, + -128393329, + 810509126, + 1220289425, + -1 + ], + "MaxAffixLevel": [ + 15, + 11, + 15, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1631659021, + "Name": "Unique_Belt_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193664, + "ItemTypesGBID": -948083356, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830278, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -250946460, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1639960468, + "Name": "Unique_Belt_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193669, + "ItemTypesGBID": -948083356, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733830276, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 3718951, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1634030863, + "Name": "Unique_Belt_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193666, + "ItemTypesGBID": -948083356, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829191, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1636402705, + "Name": "Unique_Belt_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193668, + "ItemTypesGBID": -948083356, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 143839492, + -1751678268, + -1, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1641146389, + "Name": "Unique_Belt_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193670, + "ItemTypesGBID": -948083356, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -733829186, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1908003752, + "Name": "Unique_Bracer_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193686, + "ItemTypesGBID": -1999984446, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 3718951, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1905631910, + "Name": "Unique_Bracer_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193688, + "ItemTypesGBID": -1999984446, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875944874, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -1, + 59953577, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1909189673, + "Name": "Unique_Bracer_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193685, + "ItemTypesGBID": -1999984446, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875943789, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 359993717, + 139520518, + -1604369412, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1910375594, + "Name": "Unique_Bracer_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193684, + "ItemTypesGBID": -1999984446, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942698, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + 4029372, + -1751678268, + -128393329, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1911561515, + "Name": "Unique_Bracer_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193683, + "ItemTypesGBID": -1999984446, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942695, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1904445989, + "Name": "Unique_Bracer_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193692, + "ItemTypesGBID": -1999984446, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942696, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 3718951, + 679540618, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1906817831, + "Name": "Unique_Bracer_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193687, + "ItemTypesGBID": -1999984446, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -875942695, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 139520518, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1388291841, + "Name": "Unique_Chest_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197203, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 143839492, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1381176315, + "Name": "Unique_Chest_018_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205607, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612257709, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 512004501, + -529329636, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1390663683, + "Name": "Unique_Chest_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197204, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612258794, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1428613155, + "Name": "Unique_Chest_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205616, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612258797, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246515, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1589045967, + -529329636, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1422683550, + "Name": "Unique_Chest_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222455, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259884, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 93, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 339, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1751678268, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1379990394, + "Name": "Unique_Chest_019_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205609, + "ItemTypesGBID": -1028103400, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259885, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1427427234, + "Name": "Unique_Chest_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205608, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1612259887, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1133, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -529329636, + -2133546597, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1673390030, + "Name": "Unique_Pants_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197220, + "ItemTypesGBID": 3994699, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247009, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 3718951, + 1220289425, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1679319635, + "Name": "Unique_Pants_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 209059, + "ItemTypesGBID": 3994699, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731047, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 143839492, + 139520518, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1680505556, + "Name": "Unique_Pants_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 209057, + "ItemTypesGBID": 3994699, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512731045, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 3718951, + -926180037, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1675761872, + "Name": "Unique_Pants_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222476, + "ItemTypesGBID": 3994699, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729957, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1674575951, + "Name": "Unique_Pants_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197216, + "ItemTypesGBID": 3994699, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1512729955, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1751678268, + 4029372, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1675080940, + "Name": "Unique_Shoulder_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 198573, + "ItemTypesGBID": -940830407, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 3718951, + -128393329, + 338507747, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1676266861, + "Name": "Unique_Shoulder_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 200310, + "ItemTypesGBID": -940830407, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492428, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 339, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247619, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 3718951, + 982068194, + -1604369412, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1682196466, + "Name": "Unique_Shoulder_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223619, + "ItemTypesGBID": -940830407, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492430, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1677452782, + "Name": "Unique_Shoulder_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 201325, + "ItemTypesGBID": -940830407, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 365492432, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 3718951, + 982068194, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -152378866, + "Name": "Unique_SpiritStone_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222171, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242895467, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -1, + 143839492, + 1220289425, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -153564787, + "Name": "Unique_SpiritStone_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222169, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242895466, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1, + 4029372, + -1625420711, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -155936629, + "Name": "Unique_SpiritStone_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222172, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894379, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -208849191, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -154750708, + "Name": "Unique_SpiritStone_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222173, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894377, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -1, + -1588784387, + -923861827, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -157122550, + "Name": "Unique_SpiritStone_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222306, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242894376, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -208849191, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -151192945, + "Name": "Unique_SpiritStone_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222170, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893290, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + 186163290, + -1588784387, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -150007024, + "Name": "Unique_SpiritStone_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222305, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893288, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 143839492, + -1625420711, + 810509126, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -148821103, + "Name": "Unique_SpiritStone_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221572, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -242893287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -208849191, + -529329636, + -1588784387, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 657826125, + "Name": "Unique_VoodooMask_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221167, + "ItemTypesGBID": -333341566, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -1, + 982068194, + 949340468, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 656640204, + "Name": "Unique_VoodooMask_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 204136, + "ItemTypesGBID": -333341566, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620034069, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 653082441, + "Name": "Unique_VoodooMask_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221166, + "ItemTypesGBID": -333341566, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036244, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 251572, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1604369412, + 4029372, + 949340468, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 651896520, + "Name": "Unique_VoodooMask_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221382, + "ItemTypesGBID": -333341566, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036247, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -1, + -926180037, + -553879927, + 1223187383, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 660197967, + "Name": "Unique_VoodooMask_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221168, + "ItemTypesGBID": -333341566, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 620036247, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 585244974, + 493718975, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -26194954, + "Name": "Unique_WizardHat_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 218681, + "ItemTypesGBID": -1499089042, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + 143839492, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -28566796, + "Name": "Unique_WizardHat_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 224908, + "ItemTypesGBID": -1499089042, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755623809, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 287834549, + -250946460, + 296723815, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -25009033, + "Name": "Unique_WizardHat_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 220694, + "ItemTypesGBID": -1499089042, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1755623811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247090, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + 40042201, + 512004501, + 186163290, + -2133546597, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1126659216, + "Name": "Unique_Cloak_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223149, + "ItemTypesGBID": 121411562, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40855421, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1131402900, + "Name": "Unique_Cloak_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223150, + "ItemTypesGBID": 121411562, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 810509126, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1127845137, + "Name": "Unique_Cloak_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223151, + "ItemTypesGBID": 121411562, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 40857599, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -529329636, + 963606610, + 139520518, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1844948935, + "Name": "Unique_BarbBelt_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212232, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 3718951, + 699281021, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1847320777, + "Name": "Unique_BarbBelt_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193676, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112155409, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1096375804, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1848506698, + "Name": "Unique_BarbBelt_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193674, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156495, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 699281021, + 3718951, + -553879927, + 2076777148, + -1738242886, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1842577093, + "Name": "Unique_BarbBelt_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193673, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156497, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1802869037, + 810509126, + -1823379498, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1841391172, + "Name": "Unique_BarbBelt_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193672, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112156498, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -843477631, + 3718951, + -553879927, + -1, + -1299951557, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1843763014, + "Name": "Unique_BarbBelt_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212230, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157584, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246363, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1565068128, + 3718951, + -553879927, + 143839492, + 1434483431, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1849692619, + "Name": "Unique_BarbBelt_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193675, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + 1589045967, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1846134856, + "Name": "Unique_BarbBelt_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212234, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 2112157587, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 1434483431, + 1978556068, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 844576656, + "Name": "Unique_Amulet_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197813, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246750, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 810509126, + 43895019, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880154286, + "Name": "Unique_Amulet_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197819, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 5, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228621, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 884897970, + "Name": "Unique_Amulet_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197823, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228622, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1907454216, + -1, + 512004501, + -1, + -843477631, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 851692182, + "Name": "Unique_Amulet_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197818, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228622, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -1, + 1223187383, + 1220289425, + -250946460, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 882526128, + "Name": "Unique_Amulet_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197821, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228623, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1751678268, + -1648110199, + -1796946852, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 883712049, + "Name": "Unique_Amulet_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197822, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228625, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -553879927, + -1711754382, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 842204814, + "Name": "Unique_Amulet_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 193659, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228649, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 143839492, + 139520518, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 843390735, + "Name": "Unique_Amulet_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197812, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 412443728, + -1751678268, + 512004501, + 59953577, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 846948498, + "Name": "Unique_Amulet_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197815, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + 1616088365, + 512004501, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 848134419, + "Name": "Unique_Amulet_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197817, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 143839492, + 679540618, + -2133546597, + -1604369412, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 886083891, + "Name": "Unique_Amulet_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197824, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 40042201, + -1, + -1, + -493913099, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 845762577, + "Name": "Unique_Amulet_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197814, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + -1, + -128393329, + 982068194, + 942999935, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1501493122, + "Name": "Unique_Ring_018_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212586, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 60, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1589045967, + 1616088365, + -843477631, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1547744041, + "Name": "Unique_Ring_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197835, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967284, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 78, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1076, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1751678268, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1470659176, + "Name": "Unique_Ring_021_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212546, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967285, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 982068194, + 942999935, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1544186278, + "Name": "Unique_Ring_005_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197839, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1539442594, + "Name": "Unique_Ring_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212602, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967312, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + 143839492, + 810509126, + 285196129, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1543000357, + "Name": "Unique_Ring_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212589, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967316, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 1589045967, + -1894589241, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1545372199, + "Name": "Unique_Ring_004_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197837, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967317, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247797, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1751678268, + 1223187383, + -1409407349, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1540628515, + "Name": "Unique_Ring_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212590, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967319, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + 143839492, + 3718951, + 2076777148, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1468287334, + "Name": "Unique_Ring_023_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212588, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967320, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 96, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 40042201, + 285196129, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1541814436, + "Name": "Unique_Ring_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212601, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967321, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -1802869037, + 143839492, + -1751678268, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1471845097, + "Name": "Unique_Ring_020_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212603, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248537, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + 512004501, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1548929962, + "Name": "Unique_Ring_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197834, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248880, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + -843477631, + 512004501, + 112679, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1546558120, + "Name": "Unique_Ring_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197836, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 3718951, + 1620834581, + 810509126, + 982068194, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1469473255, + "Name": "Unique_Ring_022_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212618, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -1751678268, + 3718951, + 512004501, + -493913099, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 1, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1502679043, + "Name": "Unique_Ring_017_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212648, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1751678268, + 143839492, + 4029372, + 3718951, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1500307201, + "Name": "Unique_Ring_019_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212582, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 942999935, + -493913099, + -1542055954, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1510980490, + "Name": "Unique_Ring_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212581, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1146967318, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -1751678268, + -1823379498, + 512004501, + 1616088365, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691670640, + "Name": "Unique_Mighty_1H_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 208771, + "ItemTypesGBID": -1488678091, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068682, + "SNOSet": -1830538898, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1350281776, + 512004501, + -553879927, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1690484719, + "Name": "Unique_Mighty_1H_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 208775, + "ItemTypesGBID": -1488678091, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 290068682, + "SNOSet": -1830538898, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -553879927, + 1350281776, + 2044719016, + -1256761000, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -879772959, + "Name": "Unique_HandXBow_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 211745, + "ItemTypesGBID": 763102523, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389484, + "SNOSet": -1829352977, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1951651227, + 1616088365, + -1256761000, + 2044719016, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -878587038, + "Name": "Unique_HandXBow_002_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 211749, + "ItemTypesGBID": 763102523, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -363389484, + "SNOSet": -1829352977, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2128734586, + 1616088365, + -553879927, + 2044719016, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 310004562, + "Name": "Unique_Wand_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 210479, + "ItemTypesGBID": 4385866, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 88667234, + "SNOSet": -1828167056, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 696647397, + -553879927, + -669278121, + -1461069734, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -407187446, + "Name": "Unique_Orb_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212277, + "ItemTypesGBID": 124739, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1905181656, + "SNOSet": -1828167056, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + 2111229381, + -846894066, + 810509126, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494120092, + "Name": "Unique_Fist_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 208898, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -1826981135, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 1791554648, + 512004501, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495306013, + "Name": "Unique_Fist_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 208996, + "ItemTypesGBID": -2094596416, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": 1236607151, + "SNOSet": -1826981135, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + -1625420711, + 1791554648, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -659940681, + "Name": "Unique_CeremonialDagger_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223365, + "ItemTypesGBID": -199811863, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267400, + "SNOSet": -1825795214, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + 1978556068, + 234326220, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1695872155, + "Name": "Unique_Mojo_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 210993, + "ItemTypesGBID": 4041621, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814294, + "SNOSet": -1825795214, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + 121749850, + -23927138, + 59953577, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1478426964, + "Name": "Unique_Helm_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 210851, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456765, + "SNOSet": -1824609293, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1894589241, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -877401117, + "Name": "Unique_HandXBow_003_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 210874, + "ItemTypesGBID": 763102523, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389484, + "SNOSet": -1824609293, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + -1823379498, + 810509126, + -812845450, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132588821, + "Name": "Unique_Cloak_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 208934, + "ItemTypesGBID": 121411562, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 40857599, + "SNOSet": -1824609293, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 963606610, + -553879927, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509794569, + "Name": "Unique_Ring_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212545, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": -1824609293, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2040789326, + "Name": "Unique_Boots_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197223, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -1824609293, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1802869037, + 139520518, + 3718951, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1477241043, + "Name": "Unique_Helm_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 210265, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456765, + "SNOSet": -1823423372, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1802869037, + -1823379498, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1623869263, + "Name": "Unique_Mighty_2H_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 210678, + "ItemTypesGBID": -1488678058, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329204075, + "SNOSet": -1823423372, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 1616088365, + 2044719016, + -394192022, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1387105920, + "Name": "Unique_Chest_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205613, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": -1823423372, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1976254587, + 3718951, + 359993717, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1850878540, + "Name": "Unique_BarbBelt_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212235, + "ItemTypesGBID": -479768568, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157587, + "SNOSet": -1823423372, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1978556068, + -553879927, + -529329636, + 699281021, + 1434483431, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -498960995, + "Name": "Unique_Gloves_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205631, + "ItemTypesGBID": -131821392, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912121, + "SNOSet": -1823423372, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -1823379498, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2041975247, + "Name": "Unique_Boots_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205625, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -1823423372, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + -250946460, + 139520518, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -406001525, + "Name": "Unique_Orb_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212780, + "ItemTypesGBID": 124739, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905181656, + "SNOSet": -1822237451, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + -553879927, + 2111229381, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1506889068, + "Name": "Unique_Helm_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 211531, + "ItemTypesGBID": 3851110, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456765, + "SNOSet": -1822237451, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -1976254587, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1385919999, + "Name": "Unique_Chest_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 211626, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": -1822237451, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 296723815, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1637588626, + "Name": "Unique_Belt_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212657, + "ItemTypesGBID": 3635495, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": -1822237451, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -553879927, + -1, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 849320340, + "Name": "Unique_Amulet_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222486, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228653, + "SNOSet": -1822237451, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + -1542055954, + 296723815, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -147635182, + "Name": "Unique_SpiritStone_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222307, + "ItemTypesGBID": 576647032, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242893287, + "SNOSet": -1821051530, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -923861827, + -553879927, + -1976254587, + -1823379498, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1052741641, + "Name": "Unique_CombatStaff_2H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212208, + "ItemTypesGBID": -1620551894, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771751034, + "SNOSet": -1821051530, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 783140317, + 1616088365, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1384734078, + "Name": "Unique_Chest_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205614, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": -1821051530, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 59953577, + -1802869037, + -923861827, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1638774547, + "Name": "Unique_Belt_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222487, + "ItemTypesGBID": 3635495, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": -1821051530, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1711754382, + 3718951, + -250946460, + -1823379498, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1672204109, + "Name": "Unique_Pants_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205646, + "ItemTypesGBID": 3994699, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": -1821051530, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 810509126, + -1823379498, + 139520518, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 659012046, + "Name": "Unique_VoodooMask_007_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221202, + "ItemTypesGBID": -333341566, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620036247, + "SNOSet": -1792589426, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + -553879927, + -1976254587, + 949340468, + 296723815, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1383548157, + "Name": "Unique_Chest_016_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205615, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": -1792589426, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + -553879927, + -529329636, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1697058076, + "Name": "Unique_Mojo_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 216525, + "ItemTypesGBID": 4041621, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814294, + "SNOSet": -1792589426, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 493718975, + -553879927, + -2133546597, + -23927138, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1508608648, + "Name": "Unique_Ring_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212579, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 3, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": -1792589426, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2043161168, + "Name": "Unique_Boots_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205627, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -1792589426, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 296723815, + 139520518, + 1438797838, + -1, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 887269812, + "Name": "Unique_Amulet_016_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 224189, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228653, + "SNOSet": -1789031663, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 512004501, + 810509126, + 59953577, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2050276694, + "Name": "Unique_Boots_019_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222463, + "ItemTypesGBID": 120334087, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -1789031663, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 3718951, + 139520518, + -1299951557, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -344613849, + "Name": "Unique_ChestArmor_028_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222456, + "ItemTypesGBID": -1028103400, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": -1789031663, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + 143839492, + -843477631, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1675538098, + "Name": "Unique_Belt_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 224191, + "ItemTypesGBID": 3635495, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": -1789031663, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -1751678268, + -128393329, + 3718951, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1638998321, + "Name": "Unique_Pants_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222477, + "ItemTypesGBID": 3994699, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 189, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": -1789031663, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 59953577, + 40042201, + 4029372, + 512004501, + -1, + -1 + ], + "MaxAffixLevel": [ + 63, + 63, + 63, + 63, + 63, + 63 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 850506261, + "Name": "Unique_Amulet_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222490, + "ItemTypesGBID": -365243096, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228653, + "SNOSet": -1791403505, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 1589045967, + 59953577, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507422727, + "Name": "Unique_Ring_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212587, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": -1791403505, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 4029372, + 139520518, + 982068194, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1506236806, + "Name": "Unique_Ring_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212650, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": -1790217584, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -2133546597, + -1751678268, + -1823379498, + 982068194, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1505050885, + "Name": "Unique_Ring_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 212651, + "ItemTypesGBID": 4214896, + "Flags": 16916481, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": -1790217584, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1299951557, + -1751678268, + -529329636, + 982068194, + -1823379498, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1345598685, + "Name": "Unique_Chest_025_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197199, + "ItemTypesGBID": -1028103400, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257708, + "SNOSet": -2067397377, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1681010545, + "Name": "Unique_Shoulder_006_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222948, + "ItemTypesGBID": -940830407, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -2067397377, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -121413451, + "Name": "Unique_Sword_1H_018_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223408, + "ItemTypesGBID": 140782159, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938914, + "SNOSet": -2067397377, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1509260910, + "Name": "Unique_Helm_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222559, + "ItemTypesGBID": 3851110, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454586, + "SNOSet": -2066211456, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1642556084, + "Name": "Unique_Pants_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197218, + "ItemTypesGBID": 3994699, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732134, + "SNOSet": -2066211456, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -463383365, + "Name": "Unique_Gloves_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197210, + "ItemTypesGBID": -131821392, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914300, + "SNOSet": -2066211456, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2045533010, + "Name": "Unique_Boots_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197225, + "ItemTypesGBID": 120334087, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880155, + "SNOSet": -2066211456, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 25, + 25, + 25, + 25, + 25, + 25 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2047904852, + "Name": "Unique_Boots_017_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197221, + "ItemTypesGBID": 120334087, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880156, + "SNOSet": -670703691, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1671980335, + "Name": "Unique_Belt_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222974, + "ItemTypesGBID": -948083356, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733830280, + "SNOSet": -670703691, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1640184242, + "Name": "Unique_Pants_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197214, + "ItemTypesGBID": 3994699, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512731049, + "SNOSet": -670703691, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1683382387, + "Name": "Unique_Shoulder_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 224051, + "ItemTypesGBID": -940830407, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365491340, + "SNOSet": -669517770, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1902074147, + "Name": "Unique_Bracer_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222972, + "ItemTypesGBID": -1999984446, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875943787, + "SNOSet": -669517770, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1344412764, + "Name": "Unique_Chest_026_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197193, + "ItemTypesGBID": -1028103400, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612258795, + "SNOSet": -669517770, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1511632752, + "Name": "Unique_Helm_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223972, + "ItemTypesGBID": 3851110, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9000, + "CostAlt": 5, + "IdentifyCost": 129, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565455673, + "SNOSet": -669517770, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 43, + 43, + 43, + 43, + 43, + 43 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1721331859, + "Name": "Unique_Shoulder_017_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 225132, + "ItemTypesGBID": -940830407, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365491342, + "SNOSet": 1019841339, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -497775074, + "Name": "Unique_Gloves_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205636, + "ItemTypesGBID": -131821392, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533913211, + "SNOSet": 1019841339, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1671018188, + "Name": "Unique_Pants_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 209054, + "ItemTypesGBID": 3994699, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512731045, + "SNOSet": 1019841339, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2044347089, + "Name": "Unique_Boots_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205618, + "ItemTypesGBID": 120334087, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 159, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140881244, + "SNOSet": 1019841339, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1873612043, + "Name": "Unique_Bracer_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222981, + "ItemTypesGBID": -1999984446, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942700, + "SNOSet": 1021027260, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1673166256, + "Name": "Unique_Belt_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222976, + "ItemTypesGBID": -948083356, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829191, + "SNOSet": 1021027260, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1512818673, + "Name": "Unique_Helm_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221518, + "ItemTypesGBID": 3851110, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11600, + "CostAlt": 5, + "IdentifyCost": 168, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456760, + "SNOSet": 1021027260, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1343226843, + "Name": "Unique_Chest_027_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205612, + "ItemTypesGBID": -1028103400, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": -492450617, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1674352177, + "Name": "Unique_Belt_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222740, + "ItemTypesGBID": -948083356, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": -492450617, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1637812400, + "Name": "Unique_Pants_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205644, + "ItemTypesGBID": 3994699, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": -492450617, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1684568308, + "Name": "Unique_Shoulder_009_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 224397, + "ItemTypesGBID": -940830407, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492432, + "SNOSet": -492450617, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1872426122, + "Name": "Unique_Bracer_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 222741, + "ItemTypesGBID": -1999984446, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942695, + "SNOSet": -492450617, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -461011523, + "Name": "Unique_Gloves_017_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205632, + "ItemTypesGBID": -131821392, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912121, + "SNOSet": -491264696, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2049090773, + "Name": "Unique_Boots_018_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 205626, + "ItemTypesGBID": 120334087, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -491264696, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1514004594, + "Name": "Unique_Helm_016_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 221624, + "ItemTypesGBID": 3851110, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456765, + "SNOSet": -491264696, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1244350463, + "Name": "Unique_Shield_012_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223758, + "ItemTypesGBID": 332825721, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -330720411, + "SNOSet": -490078775, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1685741035, + "Name": "Unique_Mighty_1H_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223627, + "ItemTypesGBID": -1488678091, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290068682, + "SNOSet": -490078775, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 317120088, + "Name": "Unique_Wand_018_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 224184, + "ItemTypesGBID": 4385866, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88667234, + "SNOSet": -490078775, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -630292656, + "Name": "Unique_CeremonialDagger_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223396, + "ItemTypesGBID": -199811863, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267400, + "SNOSet": -490078775, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -834707961, + "Name": "Unique_HandXBow_016_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223763, + "ItemTypesGBID": 763102523, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389484, + "SNOSet": -490078775, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500049697, + "Name": "Unique_Fist_015_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223526, + "ItemTypesGBID": -2094596416, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607151, + "SNOSet": -490078775, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -246556801, + "Name": "Unique_Axe_1H_013_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 223461, + "ItemTypesGBID": 109694, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 186, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661414574, + "SNOSet": -490078775, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -85564073, + "Name": "Unique_Dagger_008_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 189899, + "ItemTypesGBID": -262576534, + "Flags": 16916498, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -1751678268, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -793785348, + "Name": "Unique_Offhand_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 200476, + "ItemTypesGBID": -262576534, + "Flags": 16916497, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303414213, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -168850291, + "Name": "Unique_Sword_1H_001_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 16916498, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 9, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1147, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 231, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 222, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 1208, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 197, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 3, + 3, + 3, + 3, + 3, + 3 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -130900819, + "Name": "Unique_Sword_1H_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 110952, + "ItemTypesGBID": 140782159, + "Flags": 16916498, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938919, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1791554648, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -90579505, + "Name": "Unique_Sword_1H_021_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 16916529, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270937832, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1808801829, + 40042201, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -58355758, + "Name": "Unique_Sword_2H_014_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 59668, + "ItemTypesGBID": -1307049751, + "Flags": 16916530, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231802434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1311456156, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 609308756, + "Name": "Unique_Mace_1H_010_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 187952, + "ItemTypesGBID": 4026134, + "Flags": 16916498, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1, + 4029372, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 22, + 22, + 22, + 22, + 22, + 22 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 881340207, + "Name": "Unique_Amulet_011_1xx", + "GBID": 0, + "PAD": 0, + "SNOActor": 197820, + "ItemTypesGBID": -365243096, + "Flags": 16916482, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228624, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248136, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1223187383, + -1751678268, + 1438797838, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 183506628, + "Name": "Helm_console_promo", + "GBID": 0, + "PAD": 0, + "SNOActor": 325974, + "ItemTypesGBID": 3851110, + "Flags": 16780369, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1425221075, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 78, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 339, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1128, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 819732890, + "Name": "Shoulders_ps3_promo", + "GBID": 0, + "PAD": 0, + "SNOActor": 309371, + "ItemTypesGBID": -940830407, + "Flags": 16780369, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -419021771, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 171, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 126, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 86, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1058019255, + "Name": "Amulet_ps3_promo", + "GBID": 0, + "PAD": 0, + "SNOActor": 316011, + "ItemTypesGBID": -365243096, + "Flags": 16780369, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 60, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1076, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1749045807, + "Name": "Gloves_ps3_promo", + "GBID": 0, + "PAD": 0, + "SNOActor": 314632, + "ItemTypesGBID": -131821392, + "Flags": 16780369, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 742334711, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 258, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1211, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 253, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 315675, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 217818513, + "Name": "Ring_ps3_promo", + "GBID": 0, + "PAD": 0, + "SNOActor": 316852, + "ItemTypesGBID": 4214896, + "Flags": 16780369, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -159638916, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 60, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1211, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1428885498, + "Name": "Unique_Dagger_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195174, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + -1256761000, + -1461069733, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1429029246, + "Name": "Unique_Dagger_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221313, + "ItemTypesGBID": -262576534, + "Flags": 16908289, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303414213, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1133, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": 1133, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 245836, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 0, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1428849561, + "Name": "Unique_Dagger_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192579, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303413123, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 234326220, + -1, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2021488436, + "Name": "P4_Unique_Dagger_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 192579, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446969, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -916575414, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1428993309, + "Name": "Unique_Dagger_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195655, + "ItemTypesGBID": -262576534, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303412034, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 1, + 1, + 1, + 1, + 1, + 1 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1429963608, + "Name": "Unique_Dagger_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 219329, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303413118, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 96, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364312, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 60, + 0, + 0, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 486613622, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1011719542, + "Name": "Unique_Dagger_010_x1_210", + "GBID": 0, + "PAD": 0, + "SNOActor": 219329, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303413118, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364312, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 60, + 0, + 0, + 60, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 486613622, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -353801706, + "Name": "P610_Unique_Dagger_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 219329, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303413118, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484600, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 60, + 0, + 0, + 60, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1151143161, + "Name": "Unique_CeremonialDagger_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193433, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318808, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 125900958, + -1916830402, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1151250972, + "Name": "Unique_CeremonialDagger_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192540, + "ItemTypesGBID": -199811863, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635266315, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1151179098, + "Name": "Unique_CeremonialDagger_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222978, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635268492, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318732, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 493718975, + 692891489, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1151071287, + "Name": "Unique_CeremonialDagger_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196250, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267405, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318720, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1151107224, + "Name": "Unique_CeremonialDagger_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 209246, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267402, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364316, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + 493718975, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 60, + 0, + 0, + 0, + 60 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1151322846, + "Name": "Unique_CeremonialDagger_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195370, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 25, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267400, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1200, + "SNOParam": 67600, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1750610855, + "Name": "P4_Unique_CeremonialDagger_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 195370, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 75, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 25, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267400, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447030, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 126437660, + "Name": "Unique_Sword_1H_017_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 115140, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938915, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1461069734, + -976182127, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 125072054, + "Name": "Unique_Sword_1H_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 270978, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270937830, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 234326220, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 125107991, + "Name": "Unique_Sword_1H_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 194481, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270937827, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 125900958, + -553879927, + -1, + 810509126, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 126329849, + "Name": "Unique_Sword_1H_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 185397, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 0, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 125143928, + "Name": "Unique_Sword_1H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 182347, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 6, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364315, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 0, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 126509534, + "Name": "Unique_Sword_1H_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 270977, + "ItemTypesGBID": 140782159, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270935653, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 125251739, + "Name": "Unique_Sword_1H_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 115141, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270936737, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1133, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 249967, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 1616088365, + -1, + 2044719016, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 126222038, + "Name": "Unique_Sword_1H_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 189552, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270936736, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -128393329, + -1461069734, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 126257975, + "Name": "Unique_Sword_1H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192511, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270936736, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 374362, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -812845450, + -1907454216, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 935448145, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1505954351, + "Name": "P3_Unique_Sword_1H_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 192511, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270936736, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441723, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -812845450, + -1907454216, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2079384503, + "Name": "Unique_Sword_2H_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 59665, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803526, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2080570424, + "Name": "Unique_Sword_2H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 198960, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803523, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + 1589045967, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2079456377, + "Name": "Unique_Sword_2H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 181511, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231802438, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364321, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 234326220, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 0, + 0, + 0, + 0, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2080534487, + "Name": "Unique_Sword_2H_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 270979, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231802434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -553879927, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2079564188, + "Name": "Unique_Sword_2H_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 184184, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231801349, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359540, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + 715115171, + -553879927, + 2029724334, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1786063534, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1786955986, + "Name": "P61_Unique_Sword_2H_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 184184, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231801349, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478476, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + 715115171, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2079600125, + "Name": "Unique_Sword_2H_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 184190, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231801347, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1142, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2079420440, + "Name": "Unique_Sword_2H_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 181495, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231801346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + 1616088365, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 0, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2080498550, + "Name": "Unique_Sword_2H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 184187, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231801345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364317, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1461069734, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2079348566, + "Name": "Unique_Sword_2H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 190360, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231801345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1616088365, + -553879927, + -1, + 59953577, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 902398598, + "Name": "Unique_Axe_1H_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 116386, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364311, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 902434535, + "Name": "Unique_Axe_1H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 116387, + "ItemTypesGBID": 109694, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661415658, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 902326724, + "Name": "Unique_Axe_1H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 116388, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661413483, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1616088365, + -1, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 902506409, + "Name": "Unique_Axe_1H_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 189973, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661414571, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248484, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 902542346, + "Name": "Unique_Axe_1H_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 181484, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661414573, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246113, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069734, + -1796946852, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 902470472, + "Name": "Unique_Axe_1H_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 116389, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661414574, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364318, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1350281776, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 785134241, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 902470209, + "Name": "Unique_Axe_1H_005_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 116389, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661414574, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 433993, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1350281776, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1438256249, + "Name": "Unique_Axe_2H_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 186560, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 588225754, + "Name": "P66_Unique_Axe_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 186560, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700547785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483516, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1438328123, + "Name": "Unique_Axe_2H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 186494, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700548872, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246118, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1437142202, + "Name": "Unique_Axe_2H_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 191065, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700549962, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1461069734, + -1604369412, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 56, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 588225785, + "Name": "P66_Unique_Axe_2H_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 191065, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700549962, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483522, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1461069734, + -1604369412, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 56, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1437178139, + "Name": "Unique_Axe_2H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 6329, + "ItemTypesGBID": 119458520, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700551051, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1438040627, + "Name": "Unique_Axe_2H_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192887, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700549965, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1461069733, + -553879927, + 112679, + -1976254587, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 120, + 60, + 60 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2099760509, + "Name": "Unique_Mace_1H_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 188185, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364325, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + 186163290, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 0, + 0, + 0, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2099868320, + "Name": "Unique_Mace_1H_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 188169, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656025087, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1616088365, + -1, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2099940194, + "Name": "Unique_Mace_1H_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 188189, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656025085, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 125900958, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2099796446, + "Name": "Unique_Mace_1H_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 102665, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656025083, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + 1616088365, + 1589045967, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2099976131, + "Name": "Unique_Mace_1H_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 188158, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656023997, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2100012068, + "Name": "Unique_Mace_1H_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 188177, + "ItemTypesGBID": 4026134, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656022910, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2099724572, + "Name": "Unique_Mace_1H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 188181, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656023995, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1140, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 1616088365, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1506435567, + "Name": "P66_Unique_Mace_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 188181, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656023995, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1140, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483518, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + 1616088365, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2100910493, + "Name": "Unique_Mace_1H_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 188173, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656023994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -553879927, + -128393329, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240858401, + "Name": "Unique_Mace_2H_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 59633, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616890784, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318757, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 12, + 12, + 12 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240930275, + "Name": "Unique_Mace_2H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 99227, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616890781, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -812845450, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239708417, + "Name": "Unique_Mace_2H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 191584, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616889696, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 80228221, + 1616088365, + -1, + -1604369412, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239708681, + "Name": "Unique_Mace_2H_012_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 191584, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616889696, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 80228221, + -812845450, + -1, + -1604369412, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239780291, + "Name": "Unique_Mace_2H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 190840, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616889693, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359550, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240750590, + "Name": "Unique_Mace_2H_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 190868, + "ItemTypesGBID": 89494384, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616887517, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240894338, + "Name": "Unique_Mace_2H_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 190866, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616888603, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -553879927, + 2044719016, + 1616088365, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240642779, + "Name": "Unique_Mace_2H_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197717, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616888602, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364319, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 0, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 59323518, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -240643042, + "Name": "Unique_Mace_2H_009_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 197717, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616888602, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434033, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 0, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2433057, + "Name": "Unique_Polearm_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196570, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337763516, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2361183, + "Name": "Unique_Polearm_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 191570, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337762431, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -812845450, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 30602345, + "Name": "P4_Unique_Polearm_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 191570, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337762431, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446592, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -2054879108, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2024319972, + "Name": "P61_Unique_Polearm_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 191570, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337762431, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446592, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2397120, + "Name": "Unique_Polearm_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192569, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337761338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1604369412, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 0, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2397384, + "Name": "Unique_Polearm_003_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192569, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337761338, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1604369412, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 0, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2468994, + "Name": "Unique_Polearm_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195491, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337761335, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 367008, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1166725388, + "Name": "Unique_Spear_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197095, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 1791554648, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1166725126, + "Name": "Unique_Spear_004_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 197095, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 442477, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1616088365, + 2044719016, + -1355378723, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 213231594, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -723289206, + "Name": "P610_Unique_Spear_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 197095, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101312755, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484603, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1616088365, + 2044719016, + -1355378723, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1166617577, + "Name": "Unique_Spear_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 191446, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101311666, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 1616088365, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1522126077, + "Name": "P3_Unique_Spear_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 191446, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101311666, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441349, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1166653514, + "Name": "Unique_Spear_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196638, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101310576, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1196, + "SNOParam": 377452, + "Formula": [] + }, + { + "AttributeId": 1196, + "SNOParam": 377453, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1822665435, + "Name": "P4_Unique_Spear_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 196638, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101310576, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446638, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1166689451, + "Name": "Unique_Spear_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 194241, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101310575, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -553879927, + -2133546597, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1739715590, + "Name": "Unique_Bow_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175580, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504071, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + -1, + 1791554648, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1739715854, + "Name": "Unique_Bow_005_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175580, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504071, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + 1791554648, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1739643716, + "Name": "Unique_Bow_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 220654, + "ItemTypesGBID": 110504, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091500804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1739607779, + "Name": "Unique_Bow_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221938, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091502982, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 375037, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -128393329, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1739859338, + "Name": "Unique_Bow_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091502980, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 1616088365, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1739859602, + "Name": "Unique_Bow_001_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091502980, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -812845450, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1738529669, + "Name": "Unique_Bow_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175582, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091501894, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 344372, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1738709354, + "Name": "Unique_Bow_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221893, + "ItemTypesGBID": 110504, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091500804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1739571842, + "Name": "Unique_Bow_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192602, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091501889, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1147, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1461069733, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 99866995, + "Name": "Unique_XBow_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 98163, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181031811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 34, + 34, + 34, + 34, + 34, + 34 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 99687310, + "Name": "Unique_XBow_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222286, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181031815, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364332, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069734, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 0, + 0, + 11, + 11 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 100873231, + "Name": "Unique_XBow_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 194219, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181032902, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 374344, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -812845450, + -1, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 99795121, + "Name": "Unique_XBow_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 194957, + "ItemTypesGBID": -1338851342, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181035078, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 100909168, + "Name": "Unique_XBow_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 204874, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181033991, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364335, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 234326220, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 99723247, + "Name": "Unique_XBow_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192836, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181033992, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247577, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -1461069734, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 99759184, + "Name": "Unique_XBow_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221760, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181033994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 234326220, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2030354057, + "Name": "P4_Unique_XBow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 221760, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181033994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446318, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 611497192, + -553879927, + 234326220, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -2110502404, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -696806020, + "Name": "P61_Unique_XBow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 221760, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181033994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478483, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 234326220, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -807380978, + "Name": "Unique_HandXBow_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195078, + "ItemTypesGBID": 763102523, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363388401, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -807416915, + "Name": "Unique_HandXBow_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192467, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1616088365, + 1951651227, + -1, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -380433061, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2071665159, + "Name": "P3_Unique_HandXBow_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 192467, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436472, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1616088365, + 1951651227, + -730461696, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -380433061, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -807452852, + "Name": "Unique_HandXBow_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192528, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -807453116, + "Name": "Unique_HandXBow_004_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192528, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1461069734, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -807345041, + "Name": "Unique_HandXBow_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196409, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389485, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1350281776, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -863497084, + "Name": "P4_Unique_HandXBow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 196409, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389485, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446146, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1350281776, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -806338805, + "Name": "Unique_HandXBow_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 225181, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389484, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318360, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1874338115, + "Name": "Unique_Mighty_1H_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192105, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364322, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -812845450, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -474963695, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1967359831, + "Name": "P3_Unique_Mighty_1H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 192105, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441762, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -812845450, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -474963695, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1820870511, + "Name": "P67_Unique_Mighty_1H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 192105, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290066504, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483848, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -812845450, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1873295942, + "Name": "Unique_Mighty_1H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193486, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290067592, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1616088365, + -553879927, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 62, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1820870482, + "Name": "P67_Unique_Mighty_1H_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 193486, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290067592, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483675, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1616088365, + -553879927, + 112679, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 62, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1874517800, + "Name": "Unique_Mighty_1H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192705, + "ItemTypesGBID": -1488678091, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290069769, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1874374052, + "Name": "Unique_Mighty_1H_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193611, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290068682, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1976254587, + 1350281776, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -403713545, + "Name": "P4_Unique_Mighty_1H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 193611, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290068682, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447375, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + 1350281776, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 81016507, + "Name": "Unique_Mighty_2H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196308, + "ItemTypesGBID": -1488678058, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329205162, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 79902460, + "Name": "Unique_Mighty_2H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195690, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329202983, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -812845450, + 699281021, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 79902196, + "Name": "Unique_Mighty_2H_004_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195690, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329202983, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397792, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1488065617, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 142158801, + "Name": "P68_Unique_Mighty_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 195690, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329202983, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484244, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 79794649, + "Name": "Unique_Mighty_2H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193657, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329204073, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1350281776, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 82601298, + "Name": "P2_Unique_Mighty_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193657, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329204073, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 435040, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1085253735, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 905710055, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -440196761, + "Name": "P61_Unique_Mighty_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193657, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329204073, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478490, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 79974334, + "Name": "Unique_Mighty_2H_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195138, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329204075, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318417, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 1437799125, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 34, + 0, + 0, + 34, + 34 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 905710060, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364578151, + "Name": "P4_Unique_Mighty_2H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 195138, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329204075, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 73, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318417, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1899814809, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 34, + 0, + 0, + 34, + 34 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 905710060, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -440196756, + "Name": "P61_Unique_Mighty_2H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 195138, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329204075, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 73, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478489, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 34, + 0, + 0, + 34, + 34 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1345705766, + "Name": "Unique_Fist_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196472, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1145, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 234326220, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1345849514, + "Name": "Unique_Fist_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 145850, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604971, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1808801829, + -553879927, + 1616088365, + -1625420711, + 112679, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 552072150, + "Name": "P41_Unique_Fist_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 145850, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 12, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604971, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451168, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 12, + 0, + 0, + 0, + 12 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1346891687, + "Name": "Unique_Fist_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 130557, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236606059, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1346855750, + "Name": "Unique_Fist_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175938, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236606060, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1141, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1345741703, + "Name": "Unique_Fist_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193459, + "ItemTypesGBID": -2094596416, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236608236, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1345777640, + "Name": "Unique_Fist_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 145849, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607147, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 234326220, + -553879927, + -1, + 512004501, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1345813577, + "Name": "Unique_Fist_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 145851, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607150, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1848607773, + "Name": "P67_Unique_Fist_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 145851, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607150, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484106, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1345885451, + "Name": "Unique_Fist_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175939, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + 1350281776, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 552072151, + "Name": "P41_Unique_Fist_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 175939, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 12, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451170, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 12, + 0, + 0, + 12, + 12 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1345921388, + "Name": "Unique_Fist_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175937, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318433, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1588784387, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1220715006, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1119303793, + "Name": "P4_Unique_Fist_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175937, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318433, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1588784387, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1220715006, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -212263518, + "Name": "P61_Unique_Fist_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 175937, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607151, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318433, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1588784387, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1269565774, + "Name": "Unique_CombatStaff_2H_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195145, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1350281776, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -918541332, + "Name": "P4_Unique_CombatStaff_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 195145, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449021, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 252720581, + 1350281776, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1571905343, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 867602079, + "Name": "P61_Unique_CombatStaff_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 195145, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771748852, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478475, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 1350281776, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 12, + 12, + 12, + 12, + 12, + 12 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1269350152, + "Name": "Unique_CombatStaff_2H_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 209214, + "ItemTypesGBID": -1620551894, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771752119, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1269457963, + "Name": "Unique_CombatStaff_2H_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197072, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771749941, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318831, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1484349569, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 780046305, + "Name": "P41_Unique_CombatStaff_2H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 197072, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771749941, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451162, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1269386089, + "Name": "Unique_CombatStaff_2H_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197068, + "ItemTypesGBID": -1620551894, + "Flags": 16908289, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771749942, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247777, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1269529837, + "Name": "Unique_CombatStaff_2H_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192342, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771751029, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318776, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 1016453019, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 51, + 51 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -2142353559, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1848490697, + "Name": "P61_Unique_CombatStaff_2H_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192342, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771751029, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478473, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1269493900, + "Name": "Unique_CombatStaff_2H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196880, + "ItemTypesGBID": -1620551894, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771752119, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1269314215, + "Name": "Unique_CombatStaff_2H_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197065, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771751034, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246562, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116930953, + "Name": "Unique_Staff_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 184228, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + 1350281776, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 457923261, + "Name": "P4_Unique_Staff_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 184228, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446734, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1818350549, + -553879927, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1036928912, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 655953936, + "Name": "P61_Unique_Staff_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 184228, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478487, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116715331, + "Name": "Unique_Staff_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 59612, + "ItemTypesGBID": 140658708, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115688088, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116679394, + "Name": "Unique_Staff_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 59601, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115690263, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 1791554648, + -1, + 285196129, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116859079, + "Name": "Unique_Staff_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193832, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115689177, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246780, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1461069734, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 0, + 0, + 0, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116751268, + "Name": "Unique_Staff_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195407, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115689175, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1140, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 234326220, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1059001981, + "Name": "P2_Unique_Staff_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 195407, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115689175, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 4, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423238, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 234326220, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116895016, + "Name": "Unique_Staff_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193066, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115689174, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 247572, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 125900958, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116966890, + "Name": "Unique_Staff_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192167, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115689172, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -1461069734, + -553879927, + -1, + -128393329, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 66, + 60 + ], + "I38": [ + 1, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116966626, + "Name": "Unique_Staff_009_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192167, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115689172, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402448, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1461069734, + -553879927, + 742903399, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1036928904, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 655953944, + "Name": "P61_Unique_Staff_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 192167, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115689172, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478553, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1461069734, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 8246362, + "Name": "Unique_Wand_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 182074, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 8354173, + "Name": "Unique_Wand_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193355, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88666139, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 125900958, + -846894066, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 8210425, + "Name": "Unique_Wand_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 182071, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88667228, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318376, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 125900958, + -553879927, + 1435512224, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1771839282, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1246787886, + "Name": "P2_Unique_Wand_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 182071, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88667228, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318376, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1542055954, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 9324472, + "Name": "Unique_Wand_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 181995, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88667231, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1196, + "SNOParam": 71548, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 0, + 51, + 51, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -614249741, + "Name": "P4_Unique_Wand_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 181995, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88667231, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 450472, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 0, + 51, + 51, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1269551446, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -711085834, + "Name": "P610_Unique_Wand_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 181995, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88667231, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484599, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 0, + 51, + 51, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 8461984, + "Name": "Unique_Wand_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 182081, + "ItemTypesGBID": 4385866, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88668318, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 9432283, + "Name": "Unique_Wand_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 181982, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88667234, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1196, + "SNOParam": 91549, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248686, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 125900958, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1481969989, + "Name": "Unique_Mojo_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 194995, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -1, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -379156678, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1481934052, + "Name": "Unique_Mojo_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 194988, + "ItemTypesGBID": 4041621, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 70, + 70, + 0, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 161937559, + "Name": "P66_Unique_Mojo_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 194988, + "ItemTypesGBID": 4041621, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 70, + 70, + 0, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1482005926, + "Name": "Unique_Mojo_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 194991, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814297, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 374670, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 949340468, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 31, + 0, + 0, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -293058381, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1482005663, + "Name": "Unique_Mojo_004_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 194991, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814297, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1196, + "SNOParam": 102572, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 374670, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 949340468, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 31, + 0, + 0, + 31, + 31 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -293058381, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1482185611, + "Name": "Unique_Mojo_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192468, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814295, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1076, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 949340468, + -553879927, + -1823379498, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -839731297, + "Name": "P4_Unique_Mojo_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 192468, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814295, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446359, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 949340468, + -553879927, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1482149674, + "Name": "Unique_Mojo_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 191278, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814294, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318721, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -936567391, + "Name": "P610_Unique_Mojo_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 484656, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816472, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484655, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -924432587, + "Name": "Unique_Orb_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 184199, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318793, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1907454216, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1573100237, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2141245651, + "Name": "P610_Unique_Orb_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 184199, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484598, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1907454216, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 13, + 13, + 13, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -924468524, + "Name": "Unique_Orb_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195127, + "ItemTypesGBID": 124739, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -924504461, + "Name": "Unique_Orb_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195325, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905181655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 5, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -846894066, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -477998228, + "Name": "P2_Unique_Orb_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 195325, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905181655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434849, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 506065953, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -68378834, + "Name": "P4_Unique_Orb_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 195325, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905181655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434849, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 506065953, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1410786241, + "Name": "P61_Unique_Orb_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 195325, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905181655, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434849, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -924576335, + "Name": "Unique_Orb_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192320, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 2, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905181656, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1200, + "SNOParam": 168344, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 374308, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -669278121, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002335275, + "Name": "Unique_Quiver_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197625, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 569172741, + "Name": "P4_Unique_Quiver_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197625, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449114, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 1547764753, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1862624984, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002479023, + "Name": "Unique_Quiver_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197629, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236303, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -986766241, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002443086, + "Name": "Unique_Quiver_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197628, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539237389, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 112679, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002442822, + "Name": "Unique_Quiver_005_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197628, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539237389, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359606, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002407149, + "Name": "Unique_Quiver_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197627, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539237391, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1542055954, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 0, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1360210129, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002299338, + "Name": "Unique_Quiver_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197624, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539237393, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1604369412, + -493913099, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002299074, + "Name": "Unique_Quiver_001_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197624, + "ItemTypesGBID": 269990204, + "Flags": 268574721, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539237393, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359605, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 223386198, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 253945334, + "Name": "P41_Unique_Quiver_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197624, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539237393, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451169, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002371212, + "Name": "Unique_Quiver_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197626, + "ItemTypesGBID": 269990204, + "Flags": 139281, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539238484, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2002514960, + "Name": "Unique_Quiver_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197630, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539238482, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1070066039, + "Name": "P2_Unique_Quiver_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 197630, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539238482, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423241, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -579447004, + -553879927, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1516308706, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1485749570, + "Name": "P61_Unique_Quiver_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 197630, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539238482, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478486, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1729698072, + "Name": "Unique_Shield_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 152667, + "ItemTypesGBID": 332825721, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815809043, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1730668371, + "Name": "Unique_Shield_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 152666, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815807947, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -250946460, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 0, + 0, + 15, + 15, + 15 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -793495482, + "Name": "P2_Unique_Shield_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 152666, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815807947, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 435016, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 0, + 0, + 0, + 15, + 15 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1239738149, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1209179013, + "Name": "P61_Unique_Shield_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 152666, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815807947, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 435016, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 0, + 0, + 0, + 15, + 15 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1730776182, + "Name": "Unique_Shield_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 61550, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815807951, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318816, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 34, + 34, + 34 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1730632434, + "Name": "Unique_Shield_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195389, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815809035, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1542055954, + 942999935, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 0, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1730848056, + "Name": "Unique_Shield_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197478, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -333092253, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -793495487, + "Name": "P2_Unique_Shield_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 197478, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -333092253, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430683, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1730596497, + "Name": "Unique_Shield_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192484, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -330720411, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1859873874, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1257756409, + "Name": "Unique_Shield_009_x1_ConsoleCorrection", + "GBID": 0, + "PAD": 0, + "SNOActor": 192484, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -330720411, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1131, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1299951557, + -1802869037, + 2076777148, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 0, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517290700, + "Name": "Unique_Helm_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 220630, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 16, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 230001645, + "Name": "P2_Unique_Helm_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 220630, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4400, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454585, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423231, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 20, + 20, + 20, + 20, + 20, + 20 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517254763, + "Name": "Unique_Helm_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196024, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517255027, + "Name": "Unique_Helm_002_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196024, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1400, + "CostAlt": 5, + "IdentifyCost": 15, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 727, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -1, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 5, + 5, + 5, + 5, + 5, + 5 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 334197455, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517255025, + "Name": "Unique_Helm_002_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 196024, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 442353, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -1, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517075078, + "Name": "Unique_Helm_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197037, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565455674, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1142, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517182889, + "Name": "Unique_Helm_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 220549, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565455675, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318773, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 0, + 0, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517218826, + "Name": "Unique_Helm_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 198014, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456764, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 377, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 93, + "SNOParam": 4, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 338061, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1542055954, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 334233391, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517219089, + "Name": "Unique_Helm_003_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 198014, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456764, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 377, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 93, + "SNOParam": 4, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434034, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1542055954, + -553879927, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1516104779, + "Name": "Unique_Helm_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222889, + "ItemTypesGBID": 3851110, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456767, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517111015, + "Name": "Unique_Helm_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223577, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456765, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 810509126, + -1976254587, + -529329636, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1315580830, + "Name": "Unique_Gloves_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197206, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 34, + 0, + 0, + 0, + 34, + 34 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475762062, + "Name": "P41_Unique_Gloves_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 197206, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451166, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 34, + 0, + 0, + 0, + 34, + 34 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1316874562, + "Name": "Unique_Gloves_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197207, + "ItemTypesGBID": -131821392, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912119, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1316658940, + "Name": "Unique_Gloves_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205640, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912126, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1123, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1686680439, + "Name": "P66_Unique_Gloves_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 205640, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912126, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1123, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483519, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1315688641, + "Name": "Unique_Gloves_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205635, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912123, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318799, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1316838625, + "Name": "Unique_Gloves_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197205, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912122, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318349, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1445202891, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1475762027, + "Name": "P41_Unique_Gloves_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 197205, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912122, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451167, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1316802688, + "Name": "Unique_Gloves_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205642, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912121, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318731, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 972862101, + "Name": "Unique_Boots_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205620, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1321145581, + "Name": "P1_Unique_Boots_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 205620, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 409811, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 139520518, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1891778372, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -710306076, + "Name": "P71_Unique_Boots_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 205620, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 485724, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 971999613, + "Name": "Unique_Boots_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205622, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880154, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318810, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 971712117, + "Name": "Unique_Boots_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197224, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140881242, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -493913099, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 0, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 419527472, + "Name": "P4_Unique_Boots_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197224, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140881242, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447043, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 0, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 971855865, + "Name": "Unique_Boots_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205621, + "ItemTypesGBID": 120334087, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882336, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 971927739, + "Name": "Unique_Boots_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205624, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882333, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 342515, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 0, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1940317172, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 971927476, + "Name": "Unique_Boots_007_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 205624, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882333, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434010, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 0, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 971963676, + "Name": "Unique_Boots_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222464, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1132, + "SNOParam": 3, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318741, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80668106, + "Name": "Unique_Belt_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193665, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831367, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 715115171, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 0, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80596232, + "Name": "Unique_Belt_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193667, + "ItemTypesGBID": -948083356, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829184, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -79554059, + "Name": "Unique_Belt_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193671, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733830279, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318875, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80704043, + "Name": "Unique_Belt_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193664, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733830278, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -986766241, + -553879927, + -250946460, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80452484, + "Name": "Unique_Belt_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193669, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733830276, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1129, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -173688286, + "Name": "P4_Unique_Belt_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 193669, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733830276, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446541, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80632169, + "Name": "Unique_Belt_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193666, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829191, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 2076777148, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80632433, + "Name": "Unique_Belt_003_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193666, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829191, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402415, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80560295, + "Name": "Unique_Belt_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193668, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 143839492, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80416547, + "Name": "Unique_Belt_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193670, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -1, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 394468403, + "Name": "P3_Unique_Belt_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 440742, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829191, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440743, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1424752241, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1633753809, + "Name": "P69_Unique_Belt_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 440742, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829191, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440743, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -968869696, + "Name": "Unique_Bracer_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193686, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 0, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865934267, + "Name": "P4_Unique_Bracer_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 193686, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944877, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449043, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 0, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -968797822, + "Name": "Unique_Bracer_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193688, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944874, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -553879927, + 143839492, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 0, + 0, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 226695483, + "Name": "P2_Unique_Bracer_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 193688, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944874, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423242, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1542055954, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 331059424, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -509355904, + "Name": "P610_Unique_Bracer_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 193688, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944874, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484605, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1542055954, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -968905633, + "Name": "Unique_Bracer_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193685, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875943789, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 139520518, + -1604369412, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 226695480, + "Name": "P2_Unique_Bracer_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 193685, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875943789, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430135, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 0, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -968941570, + "Name": "Unique_Bracer_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193684, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942698, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318871, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -968977507, + "Name": "Unique_Bracer_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193683, + "ItemTypesGBID": -1999984446, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942693, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -968761885, + "Name": "Unique_Bracer_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193692, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942696, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318772, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 143839492, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -968833759, + "Name": "Unique_Bracer_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193687, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942695, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 139520518, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 348384391, + "Name": "Unique_Chest_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197203, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 329755266, + "Name": "P4_Unique_Chest_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 197203, + "ItemTypesGBID": -1028103400, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 69, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449064, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 23, + 23, + 23, + 23, + 23, + 23 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 348600013, + "Name": "Unique_Chest_018_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205607, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257709, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 329755272, + "Name": "P4_Unique_Chest_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 205607, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257709, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446615, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + 1589045967, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 348312517, + "Name": "Unique_Chest_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197204, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612258794, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318798, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 347162533, + "Name": "Unique_Chest_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205616, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612258797, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 246515, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 347342218, + "Name": "Unique_Chest_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222455, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259884, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318790, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1796946852, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 34, + 34 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 348635950, + "Name": "Unique_Chest_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205609, + "ItemTypesGBID": -1028103400, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259889, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 347198470, + "Name": "Unique_Chest_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205608, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1133, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1742663334, + "Name": "Unique_Pants_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197220, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364342, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -774273901, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1742663597, + "Name": "Unique_Pants_007_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 197220, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434009, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1742843019, + "Name": "Unique_Pants_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 209059, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512731047, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + 139520518, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1060882480, + "Name": "P4_Unique_Pants_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 209059, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512731047, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446502, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 0, + 0, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1742878956, + "Name": "Unique_Pants_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 209057, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512731045, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 4, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -1976254587, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 0, + 0, + 51, + 51, + 51 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -380325632, + "Name": "P41_Unique_Pants_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 209057, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512731045, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451161, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1542055954, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1742735208, + "Name": "Unique_Pants_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222476, + "ItemTypesGBID": 3994699, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729953, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1742699271, + "Name": "Unique_Pants_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197216, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1742699535, + "Name": "Unique_Pants_006_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197216, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402416, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860291372, + "Name": "Unique_Shoulder_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 198573, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 39, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365491340, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318801, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -128393329, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 13, + 13, + 13, + 13 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860255435, + "Name": "Unique_Shoulder_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 200310, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492428, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364339, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1959750034, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860255698, + "Name": "Unique_Shoulder_002_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 200310, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492428, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434005, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860075750, + "Name": "Unique_Shoulder_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223619, + "ItemTypesGBID": -940830407, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860219498, + "Name": "Unique_Shoulder_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 201325, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492432, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860219762, + "Name": "Unique_Shoulder_003_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 201325, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492432, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397783, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045819466, + "Name": "Unique_SpiritStone_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222171, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242895467, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + 1220289425, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045855403, + "Name": "Unique_SpiritStone_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222169, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242895466, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318426, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1602053498, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 19, + 19 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045927277, + "Name": "Unique_SpiritStone_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222172, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242894379, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318824, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045891340, + "Name": "Unique_SpiritStone_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222173, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242894377, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -250946460, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045963214, + "Name": "Unique_SpiritStone_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222306, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242894376, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -493913099, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045783529, + "Name": "Unique_SpiritStone_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222170, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242893290, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045747592, + "Name": "Unique_SpiritStone_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222305, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242893288, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318811, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 538317981, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045711655, + "Name": "Unique_SpiritStone_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221572, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242893287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -529329636, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1572348495, + "Name": "P1_Unique_SpiritStone_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 221572, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242893287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402540, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -370515179, + "Name": "Unique_VoodooMask_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221167, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620034067, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1220289425, + -553879927, + -1, + 949340468, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -370551116, + "Name": "Unique_VoodooMask_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 204136, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620034069, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318796, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -370658927, + "Name": "Unique_VoodooMask_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221166, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620036244, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 251572, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -370694864, + "Name": "Unique_VoodooMask_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221382, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620036247, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318774, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -370443305, + "Name": "Unique_VoodooMask_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221168, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620036247, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318385, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 0, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129359006, + "Name": "Unique_WizardHat_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 218681, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -669278121, + -846894066, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129287132, + "Name": "Unique_WizardHat_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 224908, + "ItemTypesGBID": -1499089042, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755623809, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318788, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129394943, + "Name": "Unique_WizardHat_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 220694, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755623811, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364338, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 186163290, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1317940330, + "Name": "P1_Unique_WizardHat_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 218681, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 28, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 408974, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -669278121, + -846894066, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 30, + 30, + 30 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1383279272, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1765119784, + "Name": "P3_Unique_WizardHat_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 218681, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 28, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755622720, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440336, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -669278121, + -846894066, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 30, + 30, + 30 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -746759688, + "Name": "Unique_Cloak_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223149, + "ItemTypesGBID": 121411562, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 40857601, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318421, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -746615940, + "Name": "Unique_Cloak_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223150, + "ItemTypesGBID": 121411562, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 40856510, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318420, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 34, + 34, + 34 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -746723751, + "Name": "Unique_Cloak_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223151, + "ItemTypesGBID": 121411562, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 40857599, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318300, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 221665681, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -746724015, + "Name": "Unique_Cloak_002_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223151, + "ItemTypesGBID": 121411562, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 40857599, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318300, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855143857, + "Name": "Unique_BarbBelt_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212232, + "ItemTypesGBID": -479768568, + "Flags": 16908289, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1, + 699281021, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855071983, + "Name": "Unique_BarbBelt_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193676, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112155409, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1096375804, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1564709226, + "Name": "P2_Unique_BarbBelt_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 193676, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112155409, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423233, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -142974746, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 785610854, + "Name": "P68_Unique_BarbBelt_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 193676, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112155409, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484245, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855036046, + "Name": "Unique_BarbBelt_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193674, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112156495, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -553879927, + -1299951557, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 0, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 732139751, + "Name": "P41_Unique_Belt_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 193674, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112156495, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451163, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -529329636, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 0, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 340062601, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 131061033, + "Name": "P61_Unique_Belt_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 193674, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112156495, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451163, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -529329636, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 0, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855215731, + "Name": "Unique_BarbBelt_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193673, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112156497, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318419, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855251668, + "Name": "Unique_BarbBelt_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193672, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112156498, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1564709221, + "Name": "P2_Unique_BarbBelt_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193672, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 183, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112156498, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430679, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -639901954, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855179794, + "Name": "Unique_BarbBelt_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212230, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157584, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 93, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 2, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364341, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 0, + 0, + 60, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855000109, + "Name": "Unique_BarbBelt_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193675, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + 1589045967, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2069284299, + "Name": "P2_Unique_Belt_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 193675, + "ItemTypesGBID": -948083356, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423235, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 447055002, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1533582278, + "Name": "P610_Unique_Belt_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 193675, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157586, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484602, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1802869037, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855107920, + "Name": "Unique_BarbBelt_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212234, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157587, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -855108184, + "Name": "Unique_BarbBelt_005_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212234, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157587, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359593, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1502779804, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -574194204, + "Name": "P67_Unique_BarbBelt_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 212234, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157587, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483792, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364856072, + "Name": "Unique_Amulet_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197813, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364343, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + 43895019, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 981785282, + "Name": "Unique_Amulet_003_x1_ConsoleCorrection", + "GBID": 0, + "PAD": 0, + "SNOActor": 197813, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228620, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 5, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364343, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + 1435512224, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1527232824, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -363777962, + "Name": "Unique_Amulet_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197819, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228621, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1218212873, + "Name": "P66_Unique_Amulet_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 197819, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228621, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483552, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -363634214, + "Name": "Unique_Amulet_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197823, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228622, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1128, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -843477631, + -1542055954, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364640450, + "Name": "Unique_Amulet_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197818, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228622, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1076, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + 1223187383, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -363706088, + "Name": "Unique_Amulet_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197821, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228623, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318715, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -363670151, + "Name": "Unique_Amulet_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197822, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228625, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1588784387, + -553879927, + -1711754382, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364927946, + "Name": "Unique_Amulet_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193659, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228649, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 715115171, + 139520518, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1218212841, + "Name": "P66_Unique_Amulet_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 193659, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228649, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483515, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 715115171, + 139520518, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364892009, + "Name": "Unique_Amulet_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197812, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 51, + 51, + 0, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364892273, + "Name": "Unique_Amulet_002_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197812, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359597, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 51, + 51, + 0, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364784198, + "Name": "Unique_Amulet_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197815, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228650, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364748261, + "Name": "Unique_Amulet_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197817, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318716, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 715115171, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -363598277, + "Name": "Unique_Amulet_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197824, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318719, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364820135, + "Name": "Unique_Amulet_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197814, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228651, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318718, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1256007718, + "Name": "Unique_Ring_018_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212586, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 60, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 0, + 0, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1187507361, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1256007455, + "Name": "Unique_Ring_018_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 212586, + "ItemTypesGBID": 4214896, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8400, + "CostAlt": 5, + "IdentifyCost": 120, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 38, + "CrafterRequiredLevel": 39, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967282, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 60, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402460, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 40, + 0, + 0, + 40, + 40, + 40 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254606175, + "Name": "Unique_Ring_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197835, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967284, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 78, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 15, + 15, + 15, + 15, + 15 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1256942080, + "Name": "Unique_Ring_021_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212546, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967285, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + 942999935, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254713986, + "Name": "Unique_Ring_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197839, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + -1409407349, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -826591027, + "Name": "P4_Unique_Ring_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 197839, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447060, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -252146240, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 652574048, + "Name": "P61_Unique_Ring_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 197839, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447060, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254857734, + "Name": "Unique_Ring_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212602, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967312, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254749923, + "Name": "Unique_Ring_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212589, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967316, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -986766241, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 0, + 0, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254749660, + "Name": "Unique_Ring_006_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 212589, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967316, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402462, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -986766241, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 0, + 0, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254678049, + "Name": "Unique_Ring_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197837, + "ItemTypesGBID": 4214896, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967317, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318375, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -128393329, + 810509126, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254821797, + "Name": "Unique_Ring_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212590, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967319, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 707, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + 2076777148, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 0, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -826591029, + "Name": "P4_Unique_Ring_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 212590, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967319, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 707, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 268, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446565, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 0, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1257013954, + "Name": "Unique_Ring_023_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212588, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967320, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 715115171, + 810509126, + -1823379498, + -986766241, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1257013691, + "Name": "Unique_Ring_023_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 212588, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967320, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402459, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 715115171, + 810509126, + -1823379498, + -986766241, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254785860, + "Name": "Unique_Ring_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212601, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967321, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 135, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254785596, + "Name": "Unique_Ring_007_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212601, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967321, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402413, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -553879927, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1256906143, + "Name": "Unique_Ring_020_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212603, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10600, + "CostAlt": 5, + "IdentifyCost": 153, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364340, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1256761000, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254570238, + "Name": "Unique_Ring_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197834, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 364345, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254642112, + "Name": "Unique_Ring_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197836, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318865, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1256978017, + "Name": "Unique_Ring_022_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212618, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1236210425, + "Name": "P2_Unique_Ring_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 212618, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423227, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -252146243, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 20035931, + "Name": "P41_Unique_Ring_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 212618, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451160, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -252146243, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 652574045, + "Name": "P61_Unique_Ring_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 212618, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451160, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1255971781, + "Name": "Unique_Ring_017_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212648, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1131, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1255971518, + "Name": "Unique_Ring_017_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 212648, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1131, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402461, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1187543296, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1255971520, + "Name": "Unique_Ring_017_p4", + "GBID": 0, + "PAD": 0, + "SNOActor": 212648, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402461, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 60, + 0, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1256043655, + "Name": "Unique_Ring_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212582, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 942999935, + -553879927, + -1542055954, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1704707811, + "Name": "P69_Unique_Ring_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 212582, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967346, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484282, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 942999935, + -553879927, + -1542055954, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1255720222, + "Name": "Unique_Ring_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212581, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967318, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318769, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -644397721, + "Name": "p2_Unique_Ring_Wizard_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 212602, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967312, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429648, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1236210422, + "Name": "P2_Unique_Ring_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 433496, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967312, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430674, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -826591031, + "Name": "P4_Unique_Ring_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 445697, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445694, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1481522298, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1474131962, + "Name": "P42_Unique_Ring_Haunt", + "GBID": 0, + "PAD": 0, + "SNOActor": 445697, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445694, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -826591030, + "Name": "P4_Unique_Ring_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 446188, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967287, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446187, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1873367816, + "Name": "Unique_Mighty_1H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 208771, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290068682, + "SNOSet": 1376187158, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1873331879, + "Name": "Unique_Mighty_1H_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 208775, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290068682, + "SNOSet": 1376187158, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -807560663, + "Name": "Unique_HandXBow_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 211745, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389484, + "SNOSet": 1376223095, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318348, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -807524726, + "Name": "Unique_HandXBow_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 211749, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389484, + "SNOSet": 1376223095, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318813, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 9396346, + "Name": "Unique_Wand_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 210479, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88667234, + "SNOSet": 1376259032, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 60, + 60, + 60, + 0, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -923390414, + "Name": "Unique_Orb_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212277, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905181656, + "SNOSet": 1376259032, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -1, + -846894066, + -669278121, + -553879927, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1346783876, + "Name": "Unique_Fist_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 208898, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607151, + "SNOSet": 1376294969, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1791554648, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1346819813, + "Name": "Unique_Fist_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 208996, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236607151, + "SNOSet": 1376294969, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1791554648, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1151358783, + "Name": "Unique_CeremonialDagger_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223365, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267400, + "SNOSet": 1376330906, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + 234326220, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1483048099, + "Name": "Unique_Mojo_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 210993, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814294, + "SNOSet": 1376330906, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1517003204, + "Name": "Unique_Helm_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 210851, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456765, + "SNOSet": 1376366843, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": -807488789, + "Name": "Unique_HandXBow_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 210874, + "ItemTypesGBID": 763102523, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389484, + "SNOSet": 1376366843, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1391303962, + -553879927, + -1, + 2044719016, + -812845450, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -746580003, + "Name": "Unique_Cloak_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 208934, + "ItemTypesGBID": 121411562, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 40857599, + "SNOSet": 1376366843, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -553879927, + -1976254587, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": 1255756159, + "Name": "Unique_Ring_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212545, + "ItemTypesGBID": 4214896, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": 1376366843, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 972898038, + "Name": "Unique_Boots_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197223, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": 1376366843, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 1091566653, + "Name": "P2_Unique_Pants_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 415282, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": 1376366843, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -1036605689, + "Name": "P2_Unique_Gloves_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 415190, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912121, + "SNOSet": 1376366843, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": -1517039141, + "Name": "Unique_Helm_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 210265, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456765, + "SNOSet": 1376402780, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": 80944633, + "Name": "Unique_Mighty_2H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 210678, + "ItemTypesGBID": -1488678058, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329204075, + "SNOSet": 1376402780, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1818435806, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": 348420328, + "Name": "Unique_Chest_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205613, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": 1376402780, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -854964172, + "Name": "Unique_BarbBelt_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212235, + "ItemTypesGBID": -479768568, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112157587, + "SNOSet": 1376402780, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": -1316623003, + "Name": "Unique_Gloves_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205631, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912121, + "SNOSet": 1376402780, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": 972933975, + "Name": "Unique_Boots_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205625, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": 1376402780, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 1091566654, + "Name": "P2_Unique_Pants_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 205645, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": 1376402780, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 0, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -923354477, + "Name": "Unique_Orb_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212780, + "ItemTypesGBID": 124739, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905181656, + "SNOSet": 1376438717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1087172967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -1516140716, + "Name": "Unique_Helm_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 211531, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456765, + "SNOSet": 1376438717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": 348456265, + "Name": "Unique_Chest_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 211626, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": 1376438717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + 143839492, + 810509126, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -80524358, + "Name": "Unique_Belt_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212657, + "ItemTypesGBID": -948083356, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": 1376438717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": -364712324, + "Name": "Unique_Amulet_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222486, + "ItemTypesGBID": -365243096, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228653, + "SNOSet": 1376438717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1256761000, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 0, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": 1091566655, + "Name": "P2_Unique_Pants_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 415049, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": 1376438717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -1036605688, + "Name": "P2_Unique_Gloves_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 415051, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912121, + "SNOSet": 1376438717, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": -1921330402, + "Name": "P2_Unique_Boots_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 415050, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430673, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 488016499, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880093649, + "Name": "P41_Unique_Boots_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 415050, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451186, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 488016499, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 279014931, + "Name": "P61_Unique_Boots_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 415050, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478554, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1045675718, + "Name": "Unique_SpiritStone_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222307, + "ItemTypesGBID": 576647032, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242893287, + "SNOSet": 1376474654, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": -1269601711, + "Name": "Unique_CombatStaff_2H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212208, + "ItemTypesGBID": -1620551894, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771751034, + "SNOSet": 1376474654, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -2050979060, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": 348492202, + "Name": "Unique_Chest_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205614, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": 1376474654, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -80488421, + "Name": "Unique_Belt_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222487, + "ItemTypesGBID": -948083356, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": 1376474654, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -1742627397, + "Name": "Unique_Pants_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205646, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": 1376474654, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -1921330401, + "Name": "P2_Unique_Boots_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 415264, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": 1376474654, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -1036605686, + "Name": "P2_Unique_Gloves_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 415197, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912121, + "SNOSet": 1376474654, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 60, + 0, + 0, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": -370479242, + "Name": "Unique_VoodooMask_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221202, + "ItemTypesGBID": -333341566, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620036247, + "SNOSet": 1377337142, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": 348528139, + "Name": "Unique_Chest_016_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205615, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": 1377337142, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": 1483084036, + "Name": "Unique_Mojo_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 216525, + "ItemTypesGBID": 4041621, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814294, + "SNOSet": 1377337142, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1823379498, + -2143656649, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": 1255792096, + "Name": "Unique_Ring_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212579, + "ItemTypesGBID": 4214896, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": 1377337142, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": 972969912, + "Name": "Unique_Boots_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205627, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": 1377337142, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -1036605687, + "Name": "P2_Unique_Gloves_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 205633, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912121, + "SNOSet": 1377337142, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": 1091566656, + "Name": "P2_Unique_Pants_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 205647, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": 1377337142, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 0, + 60, + 60 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -363562340, + "Name": "Unique_Amulet_016_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 224189, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228653, + "SNOSet": 1377444953, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 973185534, + "Name": "Unique_Boots_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222463, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882334, + "SNOSet": 1377444953, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1572246865, + "Name": "Unique_ChestArmor_028_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222456, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259887, + "SNOSet": 1377444953, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -79374374, + "Name": "Unique_Belt_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 224191, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": 1377444953, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -553879927, + -128393329, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1741621161, + "Name": "Unique_Pants_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222477, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729955, + "SNOSet": 1377444953, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1542055954, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364676387, + "Name": "Unique_Amulet_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222490, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228653, + "SNOSet": 1377373079, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1256761000, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 0, + 0, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1255828033, + "Name": "Unique_Ring_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212587, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": 1377373079, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 139520518, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1255863970, + "Name": "Unique_Ring_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212650, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": 1377409016, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1255899907, + "Name": "Unique_Ring_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212651, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12400, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": 1377409016, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 349678123, + "Name": "Unique_Chest_025_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197199, + "ItemTypesGBID": -1028103400, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259889, + "SNOSet": -62646137, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860111687, + "Name": "Unique_Shoulder_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222948, + "ItemTypesGBID": -940830407, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492434, + "SNOSet": -62646137, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 126473597, + "Name": "Unique_Sword_1H_018_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223408, + "ItemTypesGBID": 140782159, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270935653, + "SNOSet": -62646137, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1516068842, + "Name": "Unique_Helm_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222559, + "ItemTypesGBID": 3851110, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456767, + "SNOSet": -62610200, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1741728972, + "Name": "Unique_Pants_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197218, + "ItemTypesGBID": 3994699, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729953, + "SNOSet": -62610200, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1315544893, + "Name": "Unique_Gloves_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197210, + "ItemTypesGBID": -131821392, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912119, + "SNOSet": -62610200, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 973041786, + "Name": "Unique_Boots_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197225, + "ItemTypesGBID": 120334087, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882336, + "SNOSet": -62610200, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 973113660, + "Name": "Unique_Boots_017_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197221, + "ItemTypesGBID": 120334087, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882336, + "SNOSet": -1191676803, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -79482185, + "Name": "Unique_Belt_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222974, + "ItemTypesGBID": -948083356, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829184, + "SNOSet": -1191676803, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1741657098, + "Name": "Unique_Pants_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197214, + "ItemTypesGBID": 3994699, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729953, + "SNOSet": -1191676803, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860039813, + "Name": "Unique_Shoulder_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 224051, + "ItemTypesGBID": -940830407, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492434, + "SNOSet": -1191640866, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -968690011, + "Name": "Unique_Bracer_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222972, + "ItemTypesGBID": -1999984446, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942693, + "SNOSet": -1191640866, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 349714060, + "Name": "Unique_Chest_026_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197193, + "ItemTypesGBID": -1028103400, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259889, + "SNOSet": -1191640866, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1515996968, + "Name": "Unique_Helm_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223972, + "ItemTypesGBID": 3851110, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456767, + "SNOSet": -1191640866, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -858889829, + "Name": "Unique_Shoulder_017_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 225132, + "ItemTypesGBID": -940830407, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492434, + "SNOSet": -359545021, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1316587066, + "Name": "Unique_Gloves_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205636, + "ItemTypesGBID": -131821392, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912119, + "SNOSet": -359545021, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1742591460, + "Name": "Unique_Pants_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 209054, + "ItemTypesGBID": 3994699, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729953, + "SNOSet": -359545021, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 973005849, + "Name": "Unique_Boots_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205618, + "ItemTypesGBID": 120334087, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882336, + "SNOSet": -359545021, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -967827523, + "Name": "Unique_Bracer_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222981, + "ItemTypesGBID": -1999984446, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942693, + "SNOSet": -359509084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -79446248, + "Name": "Unique_Belt_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222976, + "ItemTypesGBID": -948083356, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829184, + "SNOSet": -359509084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1515961031, + "Name": "Unique_Helm_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221518, + "ItemTypesGBID": 3851110, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456767, + "SNOSet": -359509084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 349749997, + "Name": "Unique_Chest_027_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205612, + "ItemTypesGBID": -1028103400, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259889, + "SNOSet": 635832143, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -79410311, + "Name": "Unique_Belt_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222740, + "ItemTypesGBID": -948083356, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829184, + "SNOSet": 635832143, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1741585224, + "Name": "Unique_Pants_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205644, + "ItemTypesGBID": 3994699, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729953, + "SNOSet": 635832143, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -860003876, + "Name": "Unique_Shoulder_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 224397, + "ItemTypesGBID": -940830407, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492434, + "SNOSet": 635832143, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -967791586, + "Name": "Unique_Bracer_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 222741, + "ItemTypesGBID": -1999984446, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942693, + "SNOSet": 635832143, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1315473019, + "Name": "Unique_Gloves_017_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205632, + "ItemTypesGBID": -131821392, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912119, + "SNOSet": 635868080, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 973149597, + "Name": "Unique_Boots_018_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205626, + "ItemTypesGBID": 120334087, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882336, + "SNOSet": 635868080, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1515925094, + "Name": "Unique_Helm_016_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 221624, + "ItemTypesGBID": 3851110, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456767, + "SNOSet": 635868080, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -435077298, + "Name": "P66_Unique_Belt_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 483512, + "ItemTypesGBID": -948083356, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829184, + "SNOSet": 635868080, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1729662135, + "Name": "Unique_Shield_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223758, + "ItemTypesGBID": 332825721, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815809043, + "SNOSet": 635904017, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1873188131, + "Name": "Unique_Mighty_1H_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223627, + "ItemTypesGBID": -1488678091, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290069769, + "SNOSet": 635904017, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 9611968, + "Name": "Unique_Wand_018_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 224184, + "ItemTypesGBID": 4385866, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88668318, + "SNOSet": 635904017, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1152257208, + "Name": "Unique_CeremonialDagger_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223396, + "ItemTypesGBID": -199811863, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635266315, + "SNOSet": 635904017, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -806195057, + "Name": "Unique_HandXBow_016_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223763, + "ItemTypesGBID": 763102523, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363388401, + "SNOSet": 635904017, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1346963561, + "Name": "Unique_Fist_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223526, + "ItemTypesGBID": -2094596416, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236608236, + "SNOSet": 635904017, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 903584519, + "Name": "Unique_Axe_1H_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 223461, + "ItemTypesGBID": 109694, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661415658, + "SNOSet": 635904017, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1864208649, + "Name": "P66_Unique_Helm_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 222559, + "ItemTypesGBID": 3851110, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456767, + "SNOSet": 1360163547, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -243783609, + "Name": "P66_Unique_Pants_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 197218, + "ItemTypesGBID": 3994699, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729953, + "SNOSet": 1360163547, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1686680470, + "Name": "P66_Unique_Gloves_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 197210, + "ItemTypesGBID": -131821392, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912119, + "SNOSet": 1360163547, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -885138611, + "Name": "P66_Unique_Boots_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 197225, + "ItemTypesGBID": 120334087, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882336, + "SNOSet": 1360163547, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -885138609, + "Name": "P66_Unique_Boots_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 197221, + "ItemTypesGBID": 120334087, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140882336, + "SNOSet": 917163184, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -435077302, + "Name": "P66_Unique_Belt_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 222974, + "ItemTypesGBID": -948083356, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829184, + "SNOSet": 917163184, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -243783607, + "Name": "P66_Unique_Pants_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 197214, + "ItemTypesGBID": 3994699, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512729953, + "SNOSet": 917163184, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1893907982, + "Name": "P66_Unique_Shoulder_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 224051, + "ItemTypesGBID": -940830407, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365492434, + "SNOSet": 917163185, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1761625272, + "Name": "P66_Unique_Bracer_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 222972, + "ItemTypesGBID": -1999984446, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942693, + "SNOSet": 917163185, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -974910817, + "Name": "P66_Unique_Chest_026", + "GBID": 0, + "PAD": 0, + "SNOActor": 197193, + "ItemTypesGBID": -1028103400, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612259889, + "SNOSet": 917163185, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1864208651, + "Name": "P66_Unique_Helm_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 223972, + "ItemTypesGBID": 3851110, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565456767, + "SNOSet": 917163185, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1429065183, + "Name": "Unique_Dagger_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 189899, + "ItemTypesGBID": -262576534, + "Flags": 131090, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 1616088365, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1147302884, + "Name": "Unique_Offhand_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 200476, + "ItemTypesGBID": -262576534, + "Flags": 131089, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6800, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303414213, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 125036117, + "Name": "Unique_Sword_1H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 131090, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 9, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1147, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 231, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 222, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 1208, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 197, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 3, + 3, + 3, + 3, + 3, + 3 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 126186101, + "Name": "Unique_Sword_1H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 110952, + "ItemTypesGBID": 140782159, + "Flags": 131090, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938919, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318863, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + 1791554648, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 127407959, + "Name": "Unique_Sword_1H_021_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 131121, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270937832, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 32, + 32, + 32, + 32, + 32, + 32 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2080642298, + "Name": "Unique_Sword_2H_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 59668, + "ItemTypesGBID": -1307049751, + "Flags": 131122, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231802434, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1311456156, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 51, + 51, + 51, + 51, + 51, + 51 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2100874556, + "Name": "Unique_Mace_1H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 187952, + "ItemTypesGBID": 4026134, + "Flags": 131090, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 50, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 139520518, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 22, + 22, + 22, + 22, + 22, + 22 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -363742025, + "Name": "Unique_Amulet_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197820, + "ItemTypesGBID": -365243096, + "Flags": 131074, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 1, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 9800, + "CostAlt": 5, + "IdentifyCost": 141, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 46, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228624, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 248136, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1223187383, + -553879927, + 1438797838, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 47, + 47, + 47, + 47, + 47, + 47 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -160040935, + "Name": "p43_RetroSword_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 456927, + "ItemTypesGBID": 140782159, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 139520518, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 10, + 10, + 10, + 10 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1004803123, + "Name": "p43_RetroArmor_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 456928, + "ItemTypesGBID": -1028103400, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257709, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -1802869037, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 10, + 10, + 10, + 10 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1818934458, + "Name": "p43_RetroStaff_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 456929, + "ItemTypesGBID": 140658708, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691356, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1256761000, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -555303888, + "Name": "p43_RetroAxe_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 456930, + "ItemTypesGBID": 109694, + "Flags": 545390610, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661412390, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1444689150, + "Name": "p43_RetroSword_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 456931, + "ItemTypesGBID": 140782159, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1004803124, + "Name": "p43_RetroArmor_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 456932, + "ItemTypesGBID": -1028103400, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257709, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -250946460, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1939616936, + "Name": "p43_RetroHelm_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 456933, + "ItemTypesGBID": 3851110, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1939616935, + "Name": "p43_RetroHelm_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 456934, + "ItemTypesGBID": 3851110, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1604369412, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1939616934, + "Name": "p43_RetroHelm_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 456935, + "ItemTypesGBID": 3851110, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 10, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -799338854, + "Name": "p43_RetroAmulet_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 456936, + "ItemTypesGBID": -365243096, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + -1802869037, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -14889630, + "Name": "p43_RetroRing_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 456937, + "ItemTypesGBID": 4214896, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -250946460, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -14889629, + "Name": "p43_RetroRing_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 456938, + "ItemTypesGBID": 4214896, + "Flags": 537010194, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -529329636, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 10, + 10, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 38157301, + "Name": "p4_Helm_norm_anniversary_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 455405, + "ItemTypesGBID": 3851110, + "Flags": 545390609, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536626877, + "Name": "p43_RetroTransmog_WirtsLeg", + "GBID": 0, + "PAD": 0, + "SNOActor": 455668, + "ItemTypesGBID": 4026134, + "Flags": 545390609, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 457749, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106943, + "Name": "P71_Ethereal_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485832, + "ItemTypesGBID": -1506133005, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231801345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1320638349, + -468118025, + 1622346064, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106942, + "Name": "P71_Ethereal_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 485842, + "ItemTypesGBID": 1317985120, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091501889, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -357936632, + -1266338382, + -1937979221, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106941, + "Name": "P71_Ethereal_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 486059, + "ItemTypesGBID": 1490721311, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -23929441, + 1758982025, + -290510174, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106940, + "Name": "P71_Ethereal_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 485959, + "ItemTypesGBID": 489880273, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665052, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1501324514, + 1310771724, + 133084101, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106939, + "Name": "P71_Ethereal_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 485954, + "ItemTypesGBID": 1017837819, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236608236, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -572193912, + -1369077966, + -1616745941, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106938, + "Name": "P71_Ethereal_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 485926, + "ItemTypesGBID": 2047307949, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1452177341, + 436445485, + 534125510, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106937, + "Name": "P71_Ethereal_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 486015, + "ItemTypesGBID": -1871937094, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267402, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -578403742, + -1022015604, + 675217733, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106936, + "Name": "P71_Ethereal_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 485967, + "ItemTypesGBID": 1955587463, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661412393, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -2101813968, + 2108085978, + -139948845, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106935, + "Name": "P71_Ethereal_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 485973, + "ItemTypesGBID": -1613788692, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181032902, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1268591244, + -1322389986, + -1192472681, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106911, + "Name": "P71_Ethereal_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 486030, + "ItemTypesGBID": 327487312, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 111732409, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -663930434, + -438388760, + -474811871, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106910, + "Name": "P71_Ethereal_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 486053, + "ItemTypesGBID": -986869233, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691355, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1599562305, + 537846699, + -859183996, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106909, + "Name": "P71_Ethereal_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 485982, + "ItemTypesGBID": -615868173, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1477630448, + 920298394, + -1602322029, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106908, + "Name": "P71_Ethereal_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 486006, + "ItemTypesGBID": 572268360, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656023994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -479433104, + 1573197850, + -1853299181, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106907, + "Name": "P71_Ethereal_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 485996, + "ItemTypesGBID": -193175381, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303414211, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1616248689, + 1969517787, + -966115404, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106906, + "Name": "P71_Ethereal_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 486047, + "ItemTypesGBID": 472698078, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -863815137, + 772221961, + -1211279582, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106905, + "Name": "P71_Ethereal_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 486037, + "ItemTypesGBID": 1152592945, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1888756566, + 1623175124, + -1280817011, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106904, + "Name": "P71_Ethereal_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 486023, + "ItemTypesGBID": -299462654, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269582, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -704781956, + -83470298, + 603463839, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106903, + "Name": "P71_Ethereal_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 485856, + "ItemTypesGBID": 253496881, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415299, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -828656524, + -643625698, + 612929175, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106902, + "Name": "P71_Ethereal_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 485989, + "ItemTypesGBID": 1387788040, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236608236, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1422032903, + -1444793501, + -885041860, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106878, + "Name": "P71_Ethereal_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 485918, + "ItemTypesGBID": 124954344, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -30328515, + -280048729, + 386758912, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1509106877, + "Name": "P71_Ethereal_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 485850, + "ItemTypesGBID": -2109725623, + "Flags": 654454785, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 5, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101309489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 485819, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 82, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1548583486, + -1472517396, + 708270245, + -1256609932, + 896110661, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryFamily": 291040842, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050541, + "Name": "P71_Ethereal_Promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485832, + "ItemTypesGBID": -1307049751, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231801345, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050542, + "Name": "P71_Ethereal_Promo_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 485842, + "ItemTypesGBID": 110504, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091501889, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050543, + "Name": "P71_Ethereal_Promo_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 486059, + "ItemTypesGBID": 140782159, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050544, + "Name": "P71_Ethereal_Promo_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 485959, + "ItemTypesGBID": 4385866, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665052, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050545, + "Name": "P71_Ethereal_Promo_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 485954, + "ItemTypesGBID": -2094596416, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236608236, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050546, + "Name": "P71_Ethereal_Promo_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 485926, + "ItemTypesGBID": 4026134, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050547, + "Name": "P71_Ethereal_Promo_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 486015, + "ItemTypesGBID": -199811863, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635267402, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050548, + "Name": "P71_Ethereal_Promo_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 485967, + "ItemTypesGBID": 109694, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661412393, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050549, + "Name": "P71_Ethereal_Promo_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 485973, + "ItemTypesGBID": -1338851342, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181032902, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050573, + "Name": "P71_Ethereal_Promo_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 486030, + "ItemTypesGBID": 151398921, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 111732409, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050574, + "Name": "P71_Ethereal_Promo_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 486053, + "ItemTypesGBID": 140658708, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691355, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050575, + "Name": "P71_Ethereal_Promo_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 485982, + "ItemTypesGBID": -2094596416, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050576, + "Name": "P71_Ethereal_Promo_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 486006, + "ItemTypesGBID": 4026134, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656023994, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050577, + "Name": "P71_Ethereal_Promo_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 485996, + "ItemTypesGBID": -262576534, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303414211, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050578, + "Name": "P71_Ethereal_Promo_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 486047, + "ItemTypesGBID": 140782159, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270936739, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050579, + "Name": "P71_Ethereal_Promo_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 486037, + "ItemTypesGBID": 763102523, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050580, + "Name": "P71_Ethereal_Promo_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 486023, + "ItemTypesGBID": 140782159, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050581, + "Name": "P71_Ethereal_Promo_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 485856, + "ItemTypesGBID": -262576534, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415299, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050582, + "Name": "P71_Ethereal_Promo_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 485989, + "ItemTypesGBID": -2094596416, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236608236, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050606, + "Name": "P71_Ethereal_Promo_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 485918, + "ItemTypesGBID": -1363671135, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2091050607, + "Name": "P71_Ethereal_Promo_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 485850, + "ItemTypesGBID": 140519163, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101309489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1467949017, + "Name": "Unique_Dagger_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271728, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415302, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445279, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 0, + 0, + 70, + 70, + 70 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1870341649, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1116668303, + "Name": "P61_Unique_Dagger_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271728, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415302, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478484, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 0, + 0, + 70, + 70, + 70 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1467984954, + "Name": "Unique_Dagger_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271731, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415302, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445274, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 0, + 0, + 70, + 70, + 70 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1870305712, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1306242962, + "Name": "P41_Unique_Dagger_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271731, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415302, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445274, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 0, + 0, + 70, + 70, + 70 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1870305712, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1116704240, + "Name": "P61_Unique_Dagger_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271731, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415302, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445274, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 0, + 0, + 70, + 70, + 70 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1468020891, + "Name": "Unique_Dagger_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271732, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415302, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 322979, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 234326220, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 0, + 0, + 15, + 15, + 15 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1468056828, + "Name": "Unique_Dagger_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410960, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415302, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402457, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 0, + 0, + 70, + 70, + 70 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164171510, + "Name": "Unique_Sword_1H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 229716, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318763, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1791554648, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164207447, + "Name": "Unique_Sword_1H_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271617, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1256761000, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164243384, + "Name": "Unique_Sword_1H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271630, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + 139520518, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164279321, + "Name": "Unique_Sword_1H_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271631, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318794, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 935449203, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1505953293, + "Name": "P3_Unique_Sword_1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 271631, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441681, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164315258, + "Name": "Unique_Sword_1H_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271632, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164351195, + "Name": "Unique_Sword_1H_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271633, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164387132, + "Name": "Unique_Sword_1H_107_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271634, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446195, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -844626822, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1266834438, + "Name": "P610_Unique_Sword_1H_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 271634, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484709, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164423069, + "Name": "Unique_Sword_1H_108_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271635, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 164459006, + "Name": "Unique_Sword_1H_109_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271636, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318864, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -812845450, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 165321494, + "Name": "Unique_Sword_1H_110_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271637, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 165357431, + "Name": "Unique_Sword_1H_111_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 331905, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 165393368, + "Name": "Unique_Sword_1H_112_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 331908, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449063, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 594732942, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -127214834, + "Name": "P61_Unique_Sword_1H_112_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 331908, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449063, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 165429305, + "Name": "Unique_Sword_1H_113_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410946, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402458, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 2044719016, + 1350281776, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1645637740, + "Name": "Lewis_Test_Dagger", + "GBID": 0, + "PAD": 0, + "SNOActor": 437918, + "ItemTypesGBID": 140782159, + "Flags": 16908321, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437919, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -4428768, + "Name": "P4_Unique_Sword_1H_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 328591, + "ItemTypesGBID": 140782159, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446641, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2118483959, + "Name": "Unique_Sword_2H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271639, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803528, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318412, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2118519896, + "Name": "Unique_Sword_2H_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271644, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12800, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 62, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803528, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318358, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2118555833, + "Name": "Unique_Sword_2H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271645, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803528, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402456, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + 2044719016, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2118591770, + "Name": "Unique_Sword_2H_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 430567, + "ItemTypesGBID": -1307049751, + "Flags": 16912385, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803528, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402455, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 234326220, + -553879927, + -1604369412, + -1014170317, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -206278726, + "Name": "Unique_Sword_2H_104_x1_special", + "GBID": 0, + "PAD": 0, + "SNOActor": 430914, + "ItemTypesGBID": -1307049751, + "Flags": 16920577, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803528, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402455, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 234326220, + -553879927, + -1604369412, + -1014170317, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2118627707, + "Name": "Unique_Sword_2H_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410955, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803528, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 941462117, + "Name": "Unique_Axe_1H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271587, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": 1661412390, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 653400449, + "Name": "P4_Unique_Axe_1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 271597, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661412390, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447029, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 941533991, + "Name": "Unique_Axe_1H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271598, + "ItemTypesGBID": 109694, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661412390, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318869, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1399192730, + "Name": "Unique_Axe_2H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 234473, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": 1700547783, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1399156793, + "Name": "Unique_Axe_2H_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271600, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": 1700547783, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1399120856, + "Name": "Unique_Axe_2H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271601, + "ItemTypesGBID": 119458520, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4600, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700547783, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 322974, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 21, + 21, + 0, + 21, + 21, + 21 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2138859965, + "Name": "Unique_Mace_1H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271663, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318359, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1616088365, + 2044719016, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2138895902, + "Name": "Unique_Mace_1H_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271662, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318873, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2138931839, + "Name": "Unique_Mace_1H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271648, + "ItemTypesGBID": 4026134, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1196, + "SNOParam": 266766, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318851, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -201723008, + "Name": "Unique_Mace_2H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271666, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616890785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318753, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069734, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -201687071, + "Name": "Unique_Mace_2H_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271671, + "ItemTypesGBID": 89494384, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1616890785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318826, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1604369412, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 36666399, + "Name": "Unique_Polearm_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272056, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337763520, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318382, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1791554648, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 36702336, + "Name": "Unique_Polearm_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272057, + "ItemTypesGBID": -1203595600, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": -1337763520, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1205752970, + "Name": "Unique_Spear_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272043, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101312757, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 6, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1205788907, + "Name": "Unique_Spear_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272047, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": -101312757, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2139152509, + "Name": "Unique_Staff_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271768, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691356, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318868, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2139116572, + "Name": "Unique_Staff_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271773, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691356, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318792, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 125900958, + -1976254587, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1801145918, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1557300578, + "Name": "P610_Unique_Staff_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 271773, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691356, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484597, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 125900958, + -1976254587, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2139080635, + "Name": "Unique_Staff_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271774, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691356, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318791, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069734, + -1976254587, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2139044698, + "Name": "Unique_Staff_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271775, + "ItemTypesGBID": 140658708, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691356, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 442478, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069734, + -553879927, + -488695165, + 2044719016, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691748600, + "Name": "Unique_Shield_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298182, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318825, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2076777148, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 200340033, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691748863, + "Name": "Unique_Shield_101_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 298182, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434004, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2076777148, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691712663, + "Name": "Unique_Shield_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298186, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318853, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691676726, + "Name": "Unique_Shield_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298187, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436481, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691640789, + "Name": "Unique_Shield_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298188, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318886, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1589045967, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691568915, + "Name": "Unique_Shield_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298190, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446142, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -734892285, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2042849629, + "Name": "P61_Unique_Shield_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298190, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446142, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1691532978, + "Name": "Unique_Shield_107_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298191, + "ItemTypesGBID": 332825721, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318747, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -1, + 2076777148, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1478119370, + "Name": "Unique_Helm_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298146, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318857, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1478083433, + "Name": "Unique_Helm_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298147, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 322977, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 0, + 0, + 0, + 15, + 15 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -821155979, + "Name": "Unique_Shoulder_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298158, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1076, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1223187383, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 48, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -477706928, + "Name": "P4_Unique_Shoulder_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 298158, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449236, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 48, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -821120042, + "Name": "Unique_Shoulder_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298163, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318858, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -821084105, + "Name": "Unique_Shoulder_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298164, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 334883, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + 3718951, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1601211857, + "Name": "P3_Unique_Helm_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 428455, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 862540849, + "Name": "P4_Unique_Helm_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 426784, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449049, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 862540850, + "Name": "P4_Unique_Helm_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 429266, + "ItemTypesGBID": 3851110, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446655, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1837511985, + "Name": "P3_Unique_Shoulder_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 428444, + "ItemTypesGBID": -940830407, + "Flags": 16908289, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441318, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 48, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1837511984, + "Name": "P3_Unique_Shoulder_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 426817, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441280, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 48, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 39586090, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1041253174, + "Name": "P67_Unique_Shoulder_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 426817, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483849, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 48, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -477706926, + "Name": "P4_Unique_Shoulder_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 429681, + "ItemTypesGBID": -940830407, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446640, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 48, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1277739169, + "Name": "Unique_Gloves_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332172, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318860, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 614349464, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1277739432, + "Name": "Unique_Gloves_101_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 332172, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434007, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1277703232, + "Name": "Unique_Gloves_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332194, + "ItemTypesGBID": -131821392, + "Flags": 16908289, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402411, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1277667295, + "Name": "Unique_Gloves_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332344, + "ItemTypesGBID": -131821392, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318383, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1256761000, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1010883447, + "Name": "Unique_Boots_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 322905, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 322976, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + 3718951, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 15, + 15, + 15, + 15, + 15 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1010919384, + "Name": "Unique_Boots_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332342, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318761, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + 139520518, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1010955321, + "Name": "Unique_Boots_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 339125, + "ItemTypesGBID": 120334087, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318877, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41568650, + "Name": "Unique_Belt_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298124, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318241, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1409407349, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41532713, + "Name": "Unique_Belt_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298125, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1196, + "SNOParam": 77546, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41532977, + "Name": "Unique_Belt_102_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298125, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397782, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1809919504, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41532976, + "Name": "Unique_Belt_102_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 298125, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434038, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41496776, + "Name": "Unique_Belt_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298126, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 322980, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -553879927, + -1409407349, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 15, + 15, + 0, + 15, + 15 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41460839, + "Name": "Unique_Belt_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298127, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318742, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1409407349, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1809991378, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41461102, + "Name": "Unique_Belt_104_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 298127, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434008, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1409407349, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41424902, + "Name": "Unique_Belt_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298129, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318881, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41388965, + "Name": "Unique_Belt_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298130, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 64, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 64, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318795, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41353028, + "Name": "Unique_Belt_107_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298131, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318800, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41317091, + "Name": "Unique_Belt_108_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299381, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318833, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1409407349, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1810135126, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -41317354, + "Name": "Unique_Belt_108_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 299381, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434039, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1409407349, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -583307682, + "Name": "P2_Unique_Belt_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 423247, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359554, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -583307681, + "Name": "P2_Unique_Belt_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 423248, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430671, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -583307680, + "Name": "P2_Unique_Belt_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 423249, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434966, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -583307679, + "Name": "P2_Unique_Belt_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 423250, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430682, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -583307678, + "Name": "P2_Unique_Belt_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 423251, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430681, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -583307677, + "Name": "P2_Unique_Belt_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 423261, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423229, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -378497985, + "Name": "P3_Unique_Belt_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 440423, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 25, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440434, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 4, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -378497984, + "Name": "P3_Unique_Belt_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 440424, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437854, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1479591558, + "SeasonRequiredToDrop": 4, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -173688282, + "Name": "P4_Unique_Belt_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 440424, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437854, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -378497983, + "Name": "P3_Unique_Belt_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 440425, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440598, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 400756501, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1305476789, + "Name": "P61_Unique_Belt_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 440425, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440598, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -173688288, + "Name": "P4_Unique_Belt_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 445497, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445266, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -173688287, + "Name": "P4_Unique_Belt_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 440426, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445427, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -173688285, + "Name": "P4_Unique_Belt_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 298137, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446639, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -173688284, + "Name": "P4_Unique_Belt_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 298136, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 24, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447130, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1118603190, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -173688283, + "Name": "P4_Unique_Belt_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 449047, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449048, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929842114, + "Name": "Unique_Bracer_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298115, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318771, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1409407349, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929806177, + "Name": "Unique_Bracer_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298116, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318770, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929770240, + "Name": "Unique_Bracer_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298118, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875942693, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929734303, + "Name": "Unique_Bracer_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298119, + "ItemTypesGBID": -1999984446, + "Flags": 16908289, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318797, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929698366, + "Name": "Unique_Bracer_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298120, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 334881, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929662429, + "Name": "Unique_Bracer_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298121, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318820, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929626492, + "Name": "Unique_Bracer_107_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298122, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359557, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -128393329, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929590555, + "Name": "Unique_Bracer_108_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298123, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423240, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 27086075, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1280871269, + "Name": "P61_Unique_Bracer_108_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298123, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478491, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 226696575, + "Name": "P2_Unique_Bracer_109", + "GBID": 0, + "PAD": 0, + "SNOActor": 430290, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430289, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -219546092, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -188986956, + "Name": "P61_Unique_Bracer_109", + "GBID": 0, + "PAD": 0, + "SNOActor": 430290, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430289, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 226696599, + "Name": "P2_Unique_Bracer_110", + "GBID": 0, + "PAD": 0, + "SNOActor": 432833, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430678, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -794027399, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935385, + "Name": "P4_Unique_Bracer_110", + "GBID": 0, + "PAD": 0, + "SNOActor": 432833, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430678, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1101167688, + "Name": "P3_Unique_Bracer_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 436469, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436521, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935360, + "Name": "P4_Unique_Bracer_108", + "GBID": 0, + "PAD": 0, + "SNOActor": 440427, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449222, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1089393548, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1058834412, + "Name": "P71_Unique_Bracer_108", + "GBID": 0, + "PAD": 0, + "SNOActor": 440427, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 485725, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1101167686, + "Name": "P3_Unique_Bracer_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 440428, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441517, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -219546098, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -188986962, + "Name": "P61_Unique_Bracer_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 440428, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441517, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1101167685, + "Name": "P3_Unique_Bracer_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 440429, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441305, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 403202961, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -188986965, + "Name": "P61_Unique_Bracer_100", + "GBID": 0, + "PAD": 0, + "SNOActor": 440429, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441305, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 403202961, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 433762097, + "Name": "P67_Unique_Bracer_100", + "GBID": 0, + "PAD": 0, + "SNOActor": 440429, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483847, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1101167684, + "Name": "P3_Unique_Bracer_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 440430, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441279, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -219546096, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -188986960, + "Name": "P61_Unique_Bracer_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 440430, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441279, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1101167683, + "Name": "P3_Unique_Bracer_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 440431, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 28, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441278, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1101167682, + "Name": "P3_Unique_Bracer_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 440432, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440790, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + 982068194, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935353, + "Name": "P4_Unique_Bracer_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 444928, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 444929, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935354, + "Name": "P4_Unique_Bracer_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 445265, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445692, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935355, + "Name": "P4_Unique_Bracer_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 446057, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446008, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935356, + "Name": "P4_Unique_Bracer_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 446161, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446162, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -219546097, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -188986961, + "Name": "P61_Unique_Bracer_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 446161, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446162, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935357, + "Name": "P4_Unique_Bracer_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 447294, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447295, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935358, + "Name": "P4_Unique_Bracer_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 447838, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447839, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1865935359, + "Name": "P4_Unique_Bracer_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 449038, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 12, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449031, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -219546094, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -188986958, + "Name": "P61_Unique_Bracer_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 449038, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2800, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 12, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449031, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 386297926, + "Name": "Unique_Chest_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332200, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318779, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 386333863, + "Name": "Unique_Chest_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332202, + "ItemTypesGBID": -1028103400, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318892, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1703743563, + "Name": "Unique_Pants_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332204, + "ItemTypesGBID": 3994699, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318817, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1703707626, + "Name": "Unique_Pants_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332205, + "ItemTypesGBID": 3994699, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318827, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 982068194, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325792553, + "Name": "Unique_Amulet_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 297806, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318782, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325756616, + "Name": "Unique_Amulet_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298049, + "ItemTypesGBID": -365243096, + "Flags": 17170433, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318378, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325720679, + "Name": "Unique_Amulet_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298050, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318381, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 50, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325684742, + "Name": "Unique_Amulet_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298051, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318759, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 715115171, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325648805, + "Name": "Unique_Amulet_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298052, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 334880, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325612868, + "Name": "Unique_Amulet_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298053, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 322978, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 715115171, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 15, + 15, + 15, + 15, + 15 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325576931, + "Name": "Unique_Amulet_107_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298054, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318867, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 715115171, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325540994, + "Name": "Unique_Amulet_108_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298055, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318410, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1223187383, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325505057, + "Name": "Unique_Amulet_109_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298056, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1134, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1131, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + 715115171, + 625561207, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 1 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 737941201, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -208602479, + "Name": "Unique_Amulet_109_x1_210", + "GBID": 0, + "PAD": 0, + "SNOActor": 298056, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + 625561207, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 1, + 1 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293705631, + "Name": "Unique_Ring_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298088, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318806, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293741568, + "Name": "Unique_Ring_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298089, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318866, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1149773511, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293741305, + "Name": "Unique_Ring_102_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 298089, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434036, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293777505, + "Name": "Unique_Ring_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298090, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318861, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293813442, + "Name": "Unique_Ring_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298091, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318870, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1894589241, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293849379, + "Name": "Unique_Ring_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298092, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293885316, + "Name": "Unique_Ring_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298093, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318434, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293921253, + "Name": "Unique_Ring_107_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298094, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1360, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -952824673, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323515455, + "Name": "P3_Unique_Ring_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 298094, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441113, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + 512004501, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293957190, + "Name": "Unique_Ring_108_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298095, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 322975, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -128393329, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 15, + 15, + 15, + 15, + 15 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1038303606, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293993127, + "Name": "Unique_Ring_109_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298096, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1140, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318830, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1149521952, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293992864, + "Name": "Unique_Ring_109_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 298096, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1140, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434022, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1236210424, + "Name": "P2_Unique_Ring_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 432666, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430677, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1256761000, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -252146244, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 652574044, + "Name": "P61_Unique_Ring_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 432666, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478488, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1256761000, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1236210423, + "Name": "P2_Unique_Ring_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 433313, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359598, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -826591028, + "Name": "P4_Unique_Ring_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 449039, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -826591026, + "Name": "P4_Unique_Ring_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 449045, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 20035930, + "Name": "P41_Unique_Ring_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 449039, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451158, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -252146242, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 652574046, + "Name": "P61_Unique_Ring_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 449039, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478538, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1835346470, + "Name": "Unique_Mighty_1H_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271979, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290066501, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397802, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -474962610, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1820869426, + "Name": "P67_Unique_Mighty_1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 271979, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290066501, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483793, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1835310533, + "Name": "Unique_Mighty_1H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272008, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290066501, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441294, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 4, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -403712457, + "Name": "P4_Unique_Mighty_1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 272009, + "ItemTypesGBID": -1488678091, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 290066501, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447372, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 118930042, + "Name": "Unique_Mighty_2H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272012, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329201894, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318744, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -364577067, + "Name": "P4_Unique_Mighty_2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 322776, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329201894, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 444969, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 698631654, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1141050168, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1307483832, + "Name": "P610_Unique_Mighty_2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 322776, + "ItemTypesGBID": -1488678058, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329201894, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484604, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -816116275, + "Name": "Unique_BarbBelt_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298133, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112155406, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318821, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -816044401, + "Name": "Unique_BarbBelt_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298135, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112155406, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1213329486, + "Name": "Unique_CruShield_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299411, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118252694, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1213293549, + "Name": "Unique_CruShield_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299412, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318883, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1754339894, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 283157133, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2015537673, + "Name": "P61_Unique_CruShield_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299412, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478514, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 283157133, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 679736845, + "Name": "P65_Unique_CruShield_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299412, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478514, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1213257612, + "Name": "Unique_CruShield_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299413, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318887, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1213221675, + "Name": "Unique_CruShield_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299414, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318888, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2076777148, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1213185738, + "Name": "Unique_CruShield_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299415, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318891, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1213149801, + "Name": "Unique_CruShield_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299416, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318890, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2076777148, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1213113864, + "Name": "Unique_CruShield_107_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299417, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318884, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139346580, + "Name": "P1_CruShield_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 405429, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402414, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1592118657, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 823119018, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -557730742, + "Name": "P61_CruShield_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 405429, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478477, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 139346581, + "Name": "P1_CruShield_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 405514, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402444, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 2033068423, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1213077927, + "Name": "Unique_CruShield_108_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299418, + "ItemTypesGBID": 602099538, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318829, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 2076777148, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1317723855, + "Name": "Unique_Flail_1H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299419, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912454698, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439567, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1317759792, + "Name": "Unique_Flail_1H_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299424, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318895, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1317795729, + "Name": "Unique_Flail_1H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299425, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359537, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1317831666, + "Name": "Unique_Flail_1H_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299426, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359538, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1317867603, + "Name": "Unique_Flail_1H_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299427, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318850, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1747207177, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1025259401, + "Name": "P61_Unique_Flail_1H_105_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299427, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478513, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1317903540, + "Name": "Unique_Flail_1H_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299428, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318893, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -555900599, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1317939477, + "Name": "Unique_Flail_1H_107_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299429, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318894, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1350281776, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1622030930, + "Name": "P1_flail1H_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403812, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436430, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -848650506, + "Name": "P4_flail1H_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 403819, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1022930992, + "Name": "Unique_Flail_2H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299431, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 64, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 64, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359553, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1447009394, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1869217010, + "Name": "P610_Unique_Flail_2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 299431, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 64, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 64, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484601, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1022895055, + "Name": "Unique_Flail_2H_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299435, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359545, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1022859118, + "Name": "Unique_Flail_2H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299436, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359552, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069734, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -593519544, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1315467320, + "Name": "P61_Unique_Flail_2H_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299436, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478478, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069734, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1022823181, + "Name": "Unique_Flail_2H_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299437, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359546, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 237815937, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 826826380, + "Name": "P2_Unique_Flail_2H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 299437, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359546, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -467134145, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 237815937, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -880972799, + "Name": "P61_Unique_Flail_2H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 299437, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478537, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615102198, + "Name": "P4_flail2H_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403846, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446063, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -628579251, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1871545357, + "Name": "P65_flail2H_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403846, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446063, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -748531893, + "Name": "P4_Unique_Flail_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 403860, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 13, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451164, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -748531894, + "Name": "P4_Unique_Flail_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 395228, + "ItemTypesGBID": -1363671102, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 28, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445943, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2041434731, + "Name": "Unique_Quiver_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298170, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318805, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 745680225, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 776239361, + "Name": "P69_Unique_Quiver_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 298170, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484295, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2041470668, + "Name": "Unique_Quiver_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298171, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318804, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -252054688, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2041506605, + "Name": "Unique_Quiver_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298172, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318802, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 745680227, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 776239363, + "Name": "P69_Unique_Quiver_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 298172, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484294, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2041542542, + "Name": "Unique_Quiver_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298173, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1700723945, + "Name": "Unique_Bow_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271875, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318379, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 2044719016, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1700688008, + "Name": "Unique_Bow_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271880, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428220, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1852138930, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947418642, + "Name": "P69_Unique_Bow_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 271880, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484297, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1700652071, + "Name": "Unique_Bow_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271882, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397784, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1852138929, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947418641, + "Name": "P69_Unique_Bow_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 271882, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484293, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1700616134, + "Name": "Unique_Bow_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 319407, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 740, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436468, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 2044719016, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 824617488, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 855176624, + "Name": "P61_Unique_Bow_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 319407, + "ItemTypesGBID": 110504, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 740, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478485, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 2044719016, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1986500529, + "Name": "Unique_Xbow_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271884, + "ItemTypesGBID": -1338851342, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181031810, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318784, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1986464592, + "Name": "Unique_Xbow_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271889, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181031810, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397780, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -845425086, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1718424164, + "Name": "P41_Unique_Xbow_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 271889, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181031810, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451165, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -845425086, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1054426654, + "Name": "P65_Unique_Xbow_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 271889, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181031810, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483506, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -768425270, + "Name": "Unique_HandXBow_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271892, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363391669, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318423, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1461069733, + -730461696, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -768389333, + "Name": "Unique_HandXBow_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271914, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363391669, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318828, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1327671820, + "Name": "P4_Unique_HandXBow_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 395303, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363391669, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447696, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1327671819, + "Name": "P4_Unique_HandXBow_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 395304, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363391669, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447816, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1260582993, + "Name": "P2_handXbow_norm_unique_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 395305, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363391669, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440923, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 760767651, + "SeasonRequiredToDrop": 4, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1058639726, + "Name": "P2_xbow_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 395324, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 0, + "SNOBaseItem": 181031810, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1058639725, + "Name": "P2_xbow_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 395323, + "ItemTypesGBID": -1338851342, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181031810, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -707624295, + "Name": "Unique_Cloak_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332206, + "ItemTypesGBID": 121411562, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 40855418, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318882, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -707588358, + "Name": "Unique_Cloak_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332208, + "ItemTypesGBID": 121411562, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 40855418, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318750, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + 3718951, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1006827821, + "Name": "Unique_SpiritStone_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299454, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242895468, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318428, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1006791884, + "Name": "Unique_SpiritStone_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299461, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242895468, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318751, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1006755947, + "Name": "Unique_SpiritStone_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299464, + "ItemTypesGBID": 576647032, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -242895468, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318431, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1230466318, + "Name": "Unique_CombatStaff_2H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271749, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771748851, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1976254587, + -34095407, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1230430381, + "Name": "Unique_CombatStaff_2H_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271765, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771748851, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318430, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1127243292, + "Name": "P2_combatStaff_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 395125, + "ItemTypesGBID": -1620551894, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1771748851, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1384769285, + "Name": "Unique_Fist_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271957, + "ItemTypesGBID": -2094596416, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318432, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1616812703, + "Name": "P4_Unique_Fist_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 271963, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447368, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2096853905, + "Name": "P1_fistWeapon_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403772, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402451, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 4, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2096853906, + "Name": "P1_fistWeapon_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 403775, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402411, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 2077255630, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1218004651, + "Name": "P4_fistWeapon_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 403775, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402411, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 2077255630, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1766611058, + "Name": "P67_fistWeapon_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 403775, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483791, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1521069445, + "Name": "Unique_Mojo_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272070, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318722, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + 493718975, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1521105382, + "Name": "Unique_Mojo_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272072, + "ItemTypesGBID": 4041621, + "Flags": 16908289, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 493718975, + -529329636, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -839731298, + "Name": "P4_Unique_Mojo_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 220326, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445765, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -839731296, + "Name": "P4_Unique_Mojo_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 395198, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447843, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + 1162672856, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -21418392, + "Name": "P2_mojo_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 395199, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1215, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440457, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 4, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -21418391, + "Name": "P2_mojo_norm_unique_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 395200, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -331559471, + "Name": "Unique_VoodooMask_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299442, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620034066, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318758, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1354819701, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2008901387, + "Name": "P65_Unique_VoodooMask_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299442, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620034066, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483481, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -331523534, + "Name": "Unique_VoodooMask_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299443, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620034066, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318411, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -223029400, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1154275608, + "Name": "P61_Unique_VoodooMask_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299443, + "ItemTypesGBID": -333341566, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620034066, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318411, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1190206680, + "Name": "Unique_CeremonialDagger_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271738, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318724, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1190242617, + "Name": "Unique_CeremonialDagger_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 271745, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318812, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1986341498, + "Name": "P1_CeremonialDagger_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403748, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 410217, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1986341499, + "Name": "P1_CeremonialDagger_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 403767, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402447, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -110218283, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2015093621, + "Name": "P65_CeremonialDagger_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 403767, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483400, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 168422525, + "Name": "Unique_WizardHat_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299471, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755621630, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318777, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 168458462, + "Name": "Unique_WizardHat_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299472, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755621630, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318740, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 168494399, + "Name": "Unique_WizardHat_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 325579, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755621630, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318786, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 350771572, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 665512180, + "Name": "P68_Unique_WizardHat_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 325579, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755621630, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484116, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 168530336, + "Name": "Unique_WizardHat_104_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 349951, + "ItemTypesGBID": -1499089042, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 11000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 21, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1755621630, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423239, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 47309881, + "Name": "Unique_Wand_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272086, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318789, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 1053000410, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1775640783, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1510875025, + "Name": "P61_Unique_Wand_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272086, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478480, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 47345818, + "Name": "Unique_Wand_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272084, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318371, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1228959855, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1019958287, + "Name": "P68_Unique_Wand_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 272084, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484117, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 986739675, + "Name": "P1_Wand_norm_unique_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403781, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397788, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 986739676, + "Name": "P1_Wand_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 380733, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445920, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + 785448146, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1209211922, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 638745554, + "Name": "P61_Wand_norm_unique_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 380733, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478479, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -885440942, + "Name": "Unique_Orb_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272022, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318734, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1823379498, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -885405005, + "Name": "Unique_Orb_102_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272037, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318775, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -885369068, + "Name": "Unique_Orb_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 272038, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318855, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -68378836, + "Name": "P4_Unique_Orb_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 399317, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 68, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 448998, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -68378835, + "Name": "P4_Unique_Orb_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 399318, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449001, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1573100240, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1410786240, + "Name": "P61_Unique_Orb_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 399318, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478539, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1573100240, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2141245648, + "Name": "P610_Unique_Orb_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 399318, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 33, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484596, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -68378833, + "Name": "P4_Unique_Orb_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 399319, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449037, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 506065954, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1410786242, + "Name": "P61_Unique_Orb_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 399319, + "ItemTypesGBID": 124739, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478481, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 907966505, + "Name": "Unique_Ring_Set_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332209, + "ItemTypesGBID": 4214896, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1966172223, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 908002442, + "Name": "Unique_Ring_Set_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332210, + "ItemTypesGBID": 4214896, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1966172223, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1976254587, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -848028899, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1308364335, + "Name": "Unique_Belt_Set_02_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336184, + "ItemTypesGBID": -948083356, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": 1232859152, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359602, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1300071065, + "Name": "Unique_Bracer_Set_02_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336185, + "ItemTypesGBID": -1999984446, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": 1232859152, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359591, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 737049169, + "Name": "Unique_Sword_1H_Set_02_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 313290, + "ItemTypesGBID": 140782159, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -617115239, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 737085106, + "Name": "Unique_Sword_1H_Set_03_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 313291, + "ItemTypesGBID": 140782159, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -617115239, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -1, + -553879927, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1422608051, + "Name": "P4_Unique_Flail_2H_Set_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 395227, + "ItemTypesGBID": -1363671102, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1131506886, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1461069733, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1191466811, + "Name": "P4_Unique_Shield_Set_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 298189, + "ItemTypesGBID": 602099538, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -118254878, + "SNOSet": -1131506886, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1878916083, + "Name": "Unique_Helm_Set_05_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336988, + "ItemTypesGBID": -1587563257, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -516198331, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": -1266426989, + "Name": "Unique_Shoulder_Set_05_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336989, + "ItemTypesGBID": 1212065434, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -516198331, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -1050034492, + "Name": "Unique_Chest_Set_05_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336984, + "ItemTypesGBID": -1289348295, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -516198331, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -482952237, + "Name": "Unique_Pants_Set_05_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336986, + "ItemTypesGBID": -1177810900, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -516198331, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -2110723180, + "Name": "Unique_Boots_Set_05_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336987, + "ItemTypesGBID": -2097752600, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -516198331, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": 1573511997, + "Name": "Unique_Gloves_Set_05_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336985, + "ItemTypesGBID": 444212945, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -516198331, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": 1878952020, + "Name": "Unique_Helm_Set_06_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358791, + "ItemTypesGBID": 813646326, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -389986258, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": -1266391052, + "Name": "Unique_Shoulder_Set_06_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358792, + "ItemTypesGBID": -832936855, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -389986258, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -986766241, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": -1049998555, + "Name": "Unique_Chest_Set_06_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358788, + "ItemTypesGBID": -849738392, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -389986258, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -482916300, + "Name": "Unique_Pants_Set_06_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358790, + "ItemTypesGBID": -1995514053, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -389986258, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -2110687243, + "Name": "Unique_Boots_Set_06_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358793, + "ItemTypesGBID": -385210761, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -389986258, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": 1573547934, + "Name": "Unique_Gloves_Set_06_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358789, + "ItemTypesGBID": 180877312, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -389986258, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": -782701135, + "Name": "Unique_Orb_Set_06_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358819, + "ItemTypesGBID": 124739, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -389986258, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 244, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": 1878987957, + "Name": "Unique_Helm_Set_07_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336994, + "ItemTypesGBID": 506481070, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1966874149, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": -1266355115, + "Name": "Unique_Shoulder_Set_07_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336996, + "ItemTypesGBID": -124654591, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1966874149, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -986766241, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -1049962618, + "Name": "Unique_Chest_Set_07_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 363803, + "ItemTypesGBID": -1154939808, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1966874149, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -482880363, + "Name": "Unique_Pants_Set_07_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336993, + "ItemTypesGBID": 50199059, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1966874149, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -2110651306, + "Name": "Unique_Boots_Set_07_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336995, + "ItemTypesGBID": -1038932273, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1966874149, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": 1573583871, + "Name": "Unique_Gloves_Set_07_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336992, + "ItemTypesGBID": 1202607608, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1966874149, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": 1879023894, + "Name": "Unique_Helm_Set_08_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338034, + "ItemTypesGBID": 122656538, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 546014795, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": -1266319178, + "Name": "Unique_Shoulder_Set_08_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338036, + "ItemTypesGBID": -821460787, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 546014795, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": -1049926681, + "Name": "Unique_Chest_Set_08_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338032, + "ItemTypesGBID": 1667159564, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 546014795, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -482844426, + "Name": "Unique_Pants_Set_08_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338035, + "ItemTypesGBID": 1717378847, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 546014795, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -2110615369, + "Name": "Unique_Boots_Set_08_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338031, + "ItemTypesGBID": 1931831131, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 546014795, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": 1573619808, + "Name": "Unique_Gloves_Set_08_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338033, + "ItemTypesGBID": 922698404, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 546014795, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": 1879059831, + "Name": "Unique_Helm_Set_09_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338040, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -932389670, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": -1266283241, + "Name": "Unique_Shoulder_Set_09_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338042, + "ItemTypesGBID": -940830407, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -932389670, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": -1049890744, + "Name": "Unique_Chest_Set_09_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338038, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -932389670, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -482808489, + "Name": "Unique_Pants_Set_09_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338041, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -932389670, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -2110579432, + "Name": "Unique_Boots_Set_09_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338037, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -932389670, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": 1573655745, + "Name": "Unique_Gloves_Set_09_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 338039, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -932389670, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": 1879922319, + "Name": "Unique_Helm_Set_10_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358799, + "ItemTypesGBID": -2104376930, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1238836084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": -1265420753, + "Name": "Unique_Shoulder_Set_10_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358801, + "ItemTypesGBID": 62868689, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1238836084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -1049028256, + "Name": "Unique_Chest_Set_10_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358796, + "ItemTypesGBID": -1054135920, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1238836084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -481946001, + "Name": "Unique_Pants_Set_10_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358800, + "ItemTypesGBID": 1031652387, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1238836084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -2109716944, + "Name": "Unique_Boots_Set_10_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358795, + "ItemTypesGBID": -1989686689, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1238836084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": 1574518233, + "Name": "Unique_Gloves_Set_10_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 358798, + "ItemTypesGBID": 299901480, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1238836084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": 1568999511, + "Name": "P43_AkkhanSet_Amulet", + "GBID": 0, + "PAD": 0, + "SNOActor": 455735, + "ItemTypesGBID": -365243096, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1238836084, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": 1574554170, + "Name": "Unique_Gloves_Set_11_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336172, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1095384434, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": -1265384816, + "Name": "Unique_Shoulder_Set_11_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336175, + "ItemTypesGBID": -940830407, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1095384434, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": 1879958256, + "Name": "Unique_Helm_Set_11_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336173, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1095384434, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": -2029386574, + "Name": "Unique_Amulet_Set_11_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 336174, + "ItemTypesGBID": -365243096, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1095384434, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -27325732, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": -1048992319, + "Name": "Unique_Chest_Set_11_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 429167, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1095384434, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -481910064, + "Name": "Unique_Pants_Set_11_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 429075, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1095384434, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": 1879994193, + "Name": "Unique_Helm_Set_12_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 335028, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1298357201, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + 1589045967, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": -1265348879, + "Name": "Unique_Shoulder_Set_12_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 335029, + "ItemTypesGBID": -940830407, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1298357201, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1589045967, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": 1574590107, + "Name": "Unique_Gloves_Set_12_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 335027, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1298357201, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1589045967, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": 1301256986, + "Name": "Unique_Bracer_Set_12_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 335030, + "ItemTypesGBID": -1999984446, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": 1298357201, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1589045967, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -2109645070, + "Name": "Unique_Boots_Set_12_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 442731, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1298357201, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1589045967, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": -481874127, + "Name": "Unique_Pants_Set_12_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 442732, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1298357201, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1589045967, + -1976254587, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -1048920445, + "Name": "Unique_Chest_Set_13_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332357, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -650181911, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": -481838190, + "Name": "Unique_Pants_Set_13_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332360, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -650181911, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": -2109609133, + "Name": "Unique_Boots_Set_13_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332363, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -650181911, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -493913099, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": 1574626044, + "Name": "Unique_Gloves_Set_13_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 346210, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -650181911, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -1265312942, + "Name": "Unique_Shoulder_Set_13_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 439186, + "ItemTypesGBID": -940830407, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -650181911, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 1880030130, + "Name": "Unique_Helm_Set_13_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 439183, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -650181911, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": -1048884508, + "Name": "Unique_Chest_Set_14_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332359, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -585237053, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -481802253, + "Name": "Unique_Pants_Set_14_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332361, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -585237053, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -2109573196, + "Name": "Unique_Boots_Set_14_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332364, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -585237053, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": 1574661981, + "Name": "Unique_Gloves_Set_14_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332362, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -585237053, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": 1880066067, + "Name": "Unique_Helm_Set_14_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 443602, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -585237053, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": -1265277005, + "Name": "Unique_Shoulder_Set_14_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 444527, + "ItemTypesGBID": -940830407, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -585237053, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": 1574697918, + "Name": "Unique_Gloves_Set_15_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 340523, + "ItemTypesGBID": -131821392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -18261826, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": 1880102004, + "Name": "Unique_Helm_Set_15_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 340528, + "ItemTypesGBID": 3851110, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -18261826, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": -481766316, + "Name": "Unique_Pants_Set_15_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 340521, + "ItemTypesGBID": 3994699, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -18261826, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -1265241068, + "Name": "Unique_Shoulder_Set_15_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 340526, + "ItemTypesGBID": -940830407, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -18261826, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": -1048848571, + "Name": "Unique_Chest_Set_15_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 442474, + "ItemTypesGBID": -1028103400, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -18261826, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -2109537259, + "Name": "Unique_Boots_Set_15_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366888, + "ItemTypesGBID": 120334087, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -18261826, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": 1880137941, + "Name": "Unique_Helm_Set_16_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 369016, + "ItemTypesGBID": 1491629455, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1875714076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": -1265205131, + "Name": "Unique_Shoulder_Set_16_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 340525, + "ItemTypesGBID": 860493794, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1875714076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 715115171, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": -1048812634, + "Name": "Unique_Chest_Set_16_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 363088, + "ItemTypesGBID": -169791423, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 1875714076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -481730379, + "Name": "Unique_Pants_Set_16_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 340522, + "ItemTypesGBID": 1035347444, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1875714076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -2109501322, + "Name": "Unique_Boots_Set_16_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 340524, + "ItemTypesGBID": -53783888, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1875714076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": 1574733855, + "Name": "Unique_Gloves_Set_16_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 363094, + "ItemTypesGBID": -2107211303, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1875714076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": 1878772071, + "Name": "Unique_Helm_Set_01_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 404700, + "ItemTypesGBID": -2104376930, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1238836348, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": -1266571001, + "Name": "Unique_Shoulder_Set_01_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 404699, + "ItemTypesGBID": 62868689, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1238836348, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": -1050178504, + "Name": "Unique_Chest_Set_01_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 404095, + "ItemTypesGBID": -1054135920, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1238836348, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -483096249, + "Name": "Unique_Pants_Set_01_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 404097, + "ItemTypesGBID": 1031652387, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1238836348, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -2110867192, + "Name": "Unique_Boots_Set_01_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 404094, + "ItemTypesGBID": -1989686689, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1238836348, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": 1573367985, + "Name": "Unique_Gloves_Set_01_p1", + "GBID": 0, + "PAD": 0, + "SNOActor": 404096, + "ItemTypesGBID": 299901480, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1238836348, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": 1878772072, + "Name": "Unique_Helm_Set_01_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 414926, + "ItemTypesGBID": -1587563257, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 858522158, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": -1266571000, + "Name": "Unique_Shoulder_Set_01_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 414921, + "ItemTypesGBID": 1212065434, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 858522158, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": -1050178503, + "Name": "Unique_Chest_Set_01_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408860, + "ItemTypesGBID": -1289348295, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 858522158, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -483096248, + "Name": "Unique_Pants_Set_01_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408862, + "ItemTypesGBID": -1177810900, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 858522158, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -2110867191, + "Name": "Unique_Boots_Set_01_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408859, + "ItemTypesGBID": -2097752600, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 858522158, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": 1573367986, + "Name": "Unique_Gloves_Set_01_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408861, + "ItemTypesGBID": 444212945, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 858522158, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": 1878808009, + "Name": "Unique_Helm_Set_02_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 414927, + "ItemTypesGBID": 813646326, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -590199267, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": -1266535063, + "Name": "Unique_Shoulder_Set_02_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 414922, + "ItemTypesGBID": -832936855, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -590199267, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 3718951, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -1050142566, + "Name": "Unique_Chest_Set_02_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408868, + "ItemTypesGBID": -849738392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -590199267, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -483060311, + "Name": "Unique_Pants_Set_02_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408878, + "ItemTypesGBID": -1995514053, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -590199267, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -2110831254, + "Name": "Unique_Boots_Set_02_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408863, + "ItemTypesGBID": -385210761, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -590199267, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": 1573403923, + "Name": "Unique_Gloves_Set_02_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408873, + "ItemTypesGBID": 180877312, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -590199267, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": 1878843946, + "Name": "Unique_Helm_Set_03_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 414753, + "ItemTypesGBID": 506481070, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1966874412, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": -1266499126, + "Name": "Unique_Shoulder_Set_03_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 414760, + "ItemTypesGBID": -124654591, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1966874412, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": -1050106629, + "Name": "Unique_Chest_Set_03_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408871, + "ItemTypesGBID": 121411562, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1966874412, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -483024374, + "Name": "Unique_Pants_Set_03_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408881, + "ItemTypesGBID": 50199059, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1966874412, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": -2110795317, + "Name": "Unique_Boots_Set_03_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408866, + "ItemTypesGBID": -1038932273, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1966874412, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": 1573439860, + "Name": "Unique_Gloves_Set_03_p2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408876, + "ItemTypesGBID": 1202607608, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1966874412, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": 1878772073, + "Name": "Unique_Helm_Set_01_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 414928, + "ItemTypesGBID": 122656538, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -91400190, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": -1266570999, + "Name": "Unique_Shoulder_Set_01_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 414923, + "ItemTypesGBID": -821460787, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -91400190, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": -1050178502, + "Name": "Unique_Chest_Set_01_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408869, + "ItemTypesGBID": 1667159564, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -91400190, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -483096247, + "Name": "Unique_Pants_Set_01_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408879, + "ItemTypesGBID": 1717378847, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -91400190, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -2110867190, + "Name": "Unique_Boots_Set_01_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408864, + "ItemTypesGBID": 1931831131, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -91400190, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 1573367987, + "Name": "Unique_Gloves_Set_01_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408874, + "ItemTypesGBID": 922698404, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -91400190, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": 1878808010, + "Name": "Unique_Helm_Set_02_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 441178, + "ItemTypesGBID": 1491629455, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1875713814, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": -1266535062, + "Name": "Unique_Shoulder_Set_02_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 440420, + "ItemTypesGBID": 860493794, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1875713814, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": -1050142565, + "Name": "Unique_Chest_Set_02_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 441191, + "ItemTypesGBID": -169791423, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 1875713814, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -483060310, + "Name": "Unique_Pants_Set_02_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 441194, + "ItemTypesGBID": 1035347444, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1875713814, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -2110831253, + "Name": "Unique_Boots_Set_02_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 441195, + "ItemTypesGBID": -53783888, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1875713814, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 1573403924, + "Name": "Unique_Gloves_Set_02_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 441196, + "ItemTypesGBID": -2107211303, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1875713814, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": 1878843947, + "Name": "Unique_Helm_Set_03_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 414930, + "ItemTypesGBID": -2104376930, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1238836346, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": -1266499125, + "Name": "Unique_Shoulder_Set_03_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 414925, + "ItemTypesGBID": 62868689, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1238836346, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": -1050106628, + "Name": "Unique_Chest_Set_03_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408872, + "ItemTypesGBID": -1054135920, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1238836346, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -483024373, + "Name": "Unique_Pants_Set_03_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408882, + "ItemTypesGBID": 1031652387, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1238836346, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": -2110795316, + "Name": "Unique_Boots_Set_03_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408867, + "ItemTypesGBID": -1989686689, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1238836346, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 1573439861, + "Name": "Unique_Gloves_Set_03_p3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408877, + "ItemTypesGBID": 299901480, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1238836346, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": 1730372227, + "Name": "P67_Unique_Helm_Set_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 483652, + "ItemTypesGBID": -2104376930, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1241312, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": -364297181, + "Name": "P67_Unique_Shoulder_Set_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 483654, + "ItemTypesGBID": 62868689, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1241312, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": 1470561908, + "Name": "P67_Unique_Chest_Set_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 483650, + "ItemTypesGBID": -1054135920, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 1241312, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": -619479581, + "Name": "P67_Unique_Pants_Set_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 483653, + "ItemTypesGBID": 1031652387, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1241312, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": 2095111492, + "Name": "P67_Unique_Boots_Set_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 483649, + "ItemTypesGBID": -1989686689, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1241312, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -1574695667, + "Name": "P67_Unique_Gloves_Set_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 483651, + "ItemTypesGBID": 299901480, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1241312, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": 1730372228, + "Name": "P67_Unique_Helm_Set_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 483659, + "ItemTypesGBID": 122656538, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1520439076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": -364297180, + "Name": "P67_Unique_Shoulder_Set_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 483661, + "ItemTypesGBID": -821460787, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1520439076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": 1470561909, + "Name": "P67_Unique_Chest_Set_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 483657, + "ItemTypesGBID": 1667159564, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1520439076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": -619479580, + "Name": "P67_Unique_Pants_Set_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 483660, + "ItemTypesGBID": 1717378847, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1520439076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": 2095111493, + "Name": "P67_Unique_Boots_Set_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 483656, + "ItemTypesGBID": 1931831131, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1520439076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -1574695666, + "Name": "P67_Unique_Gloves_Set_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 483658, + "ItemTypesGBID": 922698404, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1520439076, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": 860524774, + "Name": "P68_Unique_Helm_Set_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 484215, + "ItemTypesGBID": 813646326, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1478551769, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": -1187857658, + "Name": "P68_Unique_Shoulder_Set_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 484221, + "ItemTypesGBID": -832936855, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1478551769, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 3718951, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -1464600329, + "Name": "P68_Unique_Chest_Set_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 484209, + "ItemTypesGBID": -849738392, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 1478551769, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": 740325478, + "Name": "P68_Unique_Pants_Set_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 484218, + "ItemTypesGBID": -1995514053, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1478551769, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": -840050745, + "Name": "P68_Unique_Boots_Set_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 484206, + "ItemTypesGBID": -385210761, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1478551769, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": 349198256, + "Name": "P68_Unique_Gloves_Set_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 484212, + "ItemTypesGBID": 180877312, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1478551769, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": 860524775, + "Name": "P68_Unique_Helm_Set_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 484214, + "ItemTypesGBID": -333341566, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 620034066, + "SNOSet": 589885073, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": -1187857657, + "Name": "P68_Unique_Shoulder_Set_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 484220, + "ItemTypesGBID": 860493794, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 589885073, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -1464600328, + "Name": "P68_Unique_Chest_Set_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 484208, + "ItemTypesGBID": -169791423, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 589885073, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": 740325479, + "Name": "P68_Unique_Pants_Set_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 484217, + "ItemTypesGBID": 1035347444, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 589885073, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": -840050744, + "Name": "P68_Unique_Boots_Set_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 484205, + "ItemTypesGBID": -53783888, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 589885073, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": 349198257, + "Name": "P68_Unique_Gloves_Set_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 484211, + "ItemTypesGBID": -2107211303, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 589885073, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": 860524776, + "Name": "P68_Unique_Helm_Set_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 484216, + "ItemTypesGBID": -1587563257, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 977670506, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": -1187857656, + "Name": "P68_Unique_Shoulder_Set_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 484222, + "ItemTypesGBID": 1212065434, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 977670506, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -1464600327, + "Name": "P68_Unique_Chest_Set_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 484210, + "ItemTypesGBID": -1289348295, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 977670506, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": 740325480, + "Name": "P68_Unique_Pants_Set_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 484219, + "ItemTypesGBID": -1177810900, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 977670506, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": -840050743, + "Name": "P68_Unique_Boots_Set_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 484207, + "ItemTypesGBID": -2097752600, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 977670506, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": 349198258, + "Name": "P68_Unique_Gloves_Set_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 484213, + "ItemTypesGBID": 444212945, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 977670506, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": -9322678, + "Name": "P69_Unique_Helm_Set_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 484395, + "ItemTypesGBID": 506481070, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1238625583, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": -2011418134, + "Name": "P69_Unique_Shoulder_Set_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 484397, + "ItemTypesGBID": -124654591, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1238625583, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -529329636, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -104795269, + "Name": "P69_Unique_Chest_Set_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 484393, + "ItemTypesGBID": 121411562, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1238625583, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": 2100130538, + "Name": "P69_Unique_Pants_Set_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 484396, + "ItemTypesGBID": 50199059, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1238625583, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": 519754315, + "Name": "P69_Unique_Boots_Set_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 484392, + "ItemTypesGBID": -1038932273, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1238625583, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -2021875116, + "Name": "P69_Unique_Gloves_Set_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 484394, + "ItemTypesGBID": 1202607608, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1238625583, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": 507904377, + "Name": "P69_Necro_Set_5_Helm", + "GBID": 0, + "PAD": 0, + "SNOActor": 484414, + "ItemTypesGBID": -487438254, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 858480180, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": 822088492, + "Name": "P69_Necro_Set_5_Shoulders", + "GBID": 0, + "PAD": 0, + "SNOActor": 484415, + "ItemTypesGBID": -1118573915, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 858480180, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -424853846, + "Name": "P69_Necro_Set_5_Chest", + "GBID": 0, + "PAD": 0, + "SNOActor": 484411, + "ItemTypesGBID": 2146108164, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 858480180, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": -409678599, + "Name": "P69_Necro_Set_5_Pants", + "GBID": 0, + "PAD": 0, + "SNOActor": 484413, + "ItemTypesGBID": -943720265, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 858480180, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484587 + }, + { + "Hash": -425777286, + "Name": "P69_Necro_Set_5_Boots", + "GBID": 0, + "PAD": 0, + "SNOActor": 484410, + "ItemTypesGBID": -2032851597, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 858480180, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484585 + }, + { + "Hash": -973627517, + "Name": "P69_Necro_Set_5_Gloves", + "GBID": 0, + "PAD": 0, + "SNOActor": 484412, + "ItemTypesGBID": 208688284, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 858480180, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 484586 + }, + { + "Hash": 881826936, + "Name": "x1_FollowerItem_Enchantress_Legendary_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 366979, + "ItemTypesGBID": -464307745, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 761439029, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318835, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 128602204, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 881826937, + "Name": "x1_FollowerItem_Enchantress_Legendary_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 366980, + "ItemTypesGBID": -464307745, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 761439029, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318377, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 128602204, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 881826938, + "Name": "x1_FollowerItem_Enchantress_Legendary_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 366980, + "ItemTypesGBID": -464307745, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 761439029, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359604, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 128602204, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1876512503, + "Name": "x1_FollowerItem_Scoundrel_Legendary_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 366970, + "ItemTypesGBID": -953512528, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -229899866, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318835, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 122353522, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1876512502, + "Name": "x1_FollowerItem_Scoundrel_Legendary_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 366971, + "ItemTypesGBID": -953512528, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -229899866, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318377, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 122353522, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1876512501, + "Name": "x1_FollowerItem_Scoundrel_Legendary_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 366971, + "ItemTypesGBID": -953512528, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -229899866, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359604, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 122353522, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2063143921, + "Name": "x1_FollowerItem_Templar_Legendary_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 366968, + "ItemTypesGBID": 129668150, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1147341804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318835, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 140674858, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2063143920, + "Name": "x1_FollowerItem_Templar_Legendary_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 366969, + "ItemTypesGBID": 129668150, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1147341804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318377, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 140674858, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2063143919, + "Name": "x1_FollowerItem_Templar_Legendary_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 366969, + "ItemTypesGBID": 129668150, + "Flags": 1181761, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1147341804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359604, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 33, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 140674858, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624246, + "Name": "HealthPotionLegendary_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 341333, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1370, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1373, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624245, + "Name": "HealthPotionLegendary_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 341342, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1371, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1373, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624244, + "Name": "HealthPotionLegendary_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 341343, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1372, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1373, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624243, + "Name": "HealthPotionLegendary_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 342823, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1374, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1373, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624242, + "Name": "HealthPotionLegendary_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 342824, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1375, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1373, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624241, + "Name": "HealthPotionLegendary_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 344093, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 344094, + "Formula": [] + }, + { + "AttributeId": 1373, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624240, + "Name": "HealthPotionLegendary_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 404808, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 405166, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -252495759, + "Name": "P2_HealthPotionLegendary_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 433027, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 433021, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624239, + "Name": "HealthPotionLegendary_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 428805, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428812, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624238, + "Name": "HealthPotionLegendary_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 434627, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 434626, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624214, + "Name": "HealthPotionLegendary_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 451311, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451310, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -917624213, + "Name": "HealthPotionLegendary_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 483316, + "ItemTypesGBID": -1916071921, + "Flags": 1181697, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1916071921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483315, + "Formula": [] + }, + { + "AttributeId": 1373, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 25, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 18904464, + "Name": "Unique_Helm_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 359270, + "ItemTypesGBID": 3851110, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 18940401, + "Name": "Unique_Helm_Promo_02_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 359271, + "ItemTypesGBID": 3851110, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1701869453, + "Name": "Unique_CeremonialDagger_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 337285, + "ItemTypesGBID": -199811863, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1076803264, + "Name": "Unique_Fist_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 337291, + "ItemTypesGBID": -2094596416, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1114366774, + "Name": "Unique_Flail_1H_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 359263, + "ItemTypesGBID": -1363671135, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1847637413, + "Name": "Unique_HandXBow_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 337306, + "ItemTypesGBID": 763102523, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363391669, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -308085931, + "Name": "Unique_Mighty_2H_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 337314, + "ItemTypesGBID": -1488678058, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329201894, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 581543469, + "Name": "Unique_Orb_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 359418, + "ItemTypesGBID": 124739, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179475, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2111210159, + "Name": "Unique_Sword_1H_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 337282, + "ItemTypesGBID": 140782159, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1762560888, + "Name": "X1_Boots_norm_promo_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 385582, + "ItemTypesGBID": 120334087, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -501393847, + "Name": "X1_chestArmor_norm_promo_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 385583, + "ItemTypesGBID": -1028103400, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2137840159, + "Name": "X1_Gloves_norm_promo_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 385584, + "ItemTypesGBID": -131821392, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2034926871, + "Name": "X1_Helm_norm_promo_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 387013, + "ItemTypesGBID": 3851110, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1740821673, + "Name": "X1_pants_norm_promo_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 385585, + "ItemTypesGBID": 3994699, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -140087521, + "Name": "X1_shoulderPads_norm_promo_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 389082, + "ItemTypesGBID": -940830407, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -653177295, + "Name": "X1_Helm_norm_season_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 350327, + "ItemTypesGBID": 3851110, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 585791801, + "Name": "X1_shoulderPads_norm_season_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 351008, + "ItemTypesGBID": -940830407, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1051320142, + "Name": "X1_Boots_norm_season_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 391489, + "ItemTypesGBID": 120334087, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1547584931, + "Name": "X1_chestArmor_norm_season_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 391485, + "ItemTypesGBID": -1028103400, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915535813, + "Name": "X1_Gloves_norm_season_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 391488, + "ItemTypesGBID": -131821392, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1366487121, + "Name": "X1_Pants_norm_season_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 391490, + "ItemTypesGBID": 3994699, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -267193160, + "Name": "p7_Helm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 478928, + "ItemTypesGBID": 3851110, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1580779584, + "Name": "p7_shoulderPads_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 478929, + "ItemTypesGBID": -940830407, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -258252199, + "Name": "p7_boots_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 478905, + "ItemTypesGBID": 120334087, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1580434134, + "Name": "p7_chestArmor_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 478903, + "ItemTypesGBID": -1028103400, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -669135166, + "Name": "p7_Gloves_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 478906, + "ItemTypesGBID": -131821392, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1510431048, + "Name": "p7_pants_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 478904, + "ItemTypesGBID": 3994699, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1822793095, + "Name": "p8_Helm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 484903, + "ItemTypesGBID": 3851110, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1778177665, + "Name": "p8_shoulderPads_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 484905, + "ItemTypesGBID": -940830407, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -53442502, + "Name": "p8_boots_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 484908, + "ItemTypesGBID": 120334087, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220629077, + "Name": "p8_chestArmor_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 484907, + "ItemTypesGBID": -1028103400, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1794617539, + "Name": "p8_Gloves_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 484904, + "ItemTypesGBID": -131821392, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1305621351, + "Name": "p8_pants_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 484906, + "ItemTypesGBID": 3994699, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1545350263, + "Name": "p71_Helm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485807, + "ItemTypesGBID": 3851110, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1888016254, + "Name": "p71_shoulderPad_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485802, + "ItemTypesGBID": -940830407, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 512236362, + "Name": "p71_boots_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485803, + "ItemTypesGBID": 120334087, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -896043845, + "Name": "p71_chestArmor_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485805, + "ItemTypesGBID": -1028103400, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1012816429, + "Name": "p71_Gloves_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485806, + "ItemTypesGBID": -131821392, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -739942487, + "Name": "p71_pants_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485804, + "ItemTypesGBID": 3994699, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -616553761, + "Name": "p71_twoHandedAxe_Promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 485729, + "ItemTypesGBID": 119458520, + "Flags": 1, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700547783, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1142135055, + "Name": "p1_bow_norm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403608, + "ItemTypesGBID": 110504, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2091504071, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1692376569, + "Name": "p1_fistWeapon_norm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 402499, + "ItemTypesGBID": -2094596416, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -445685539, + "Name": "p1_Mace_norm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403366, + "ItemTypesGBID": 4026134, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026173, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2032665308, + "Name": "p1_mightyWeapon_2H_norm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 402773, + "ItemTypesGBID": -1488678058, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 329202983, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2028438506, + "Name": "p1_orb_norm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 403401, + "ItemTypesGBID": 124739, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1905179476, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1867383205, + "Name": "p1_Staff_norm_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 402266, + "ItemTypesGBID": 140658708, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691350, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1338196779, + "Name": "P2_Helm_LOTV", + "GBID": 0, + "PAD": 0, + "SNOActor": 434736, + "ItemTypesGBID": 3851110, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 970222867, + "Name": "P2_ShoulderPads_LOTV", + "GBID": 0, + "PAD": 0, + "SNOActor": 434757, + "ItemTypesGBID": -940830407, + "Flags": 8388609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 42569453, + "Name": "TransmogHelm_Illidan", + "GBID": 0, + "PAD": 0, + "SNOActor": 449959, + "ItemTypesGBID": 3851110, + "Flags": 545259521, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2094358470, + "Name": "TransmogShield_313", + "GBID": 0, + "PAD": 0, + "SNOActor": 445356, + "ItemTypesGBID": 332825721, + "Flags": 545390592, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2129793537, + "Name": "TransmogHelm_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 428455, + "ItemTypesGBID": 3851110, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -919506892, + "Name": "TransmogShoulders_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 428444, + "ItemTypesGBID": -940830407, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1862484576, + "Name": "TransmogSword_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 271632, + "ItemTypesGBID": 140782159, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1990947633, + "Name": "TransmogAxe_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 271587, + "ItemTypesGBID": 109694, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1661412392, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1990947632, + "Name": "TransmogAxe_241_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 234473, + "ItemTypesGBID": 119458520, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700547783, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2127738887, + "Name": "TransmogFlail_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 395210, + "ItemTypesGBID": -1363671135, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2129793538, + "Name": "TransmogHelm_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 450187, + "ItemTypesGBID": 3851110, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2127738886, + "Name": "TransmogFlail_241_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 403819, + "ItemTypesGBID": -1363671135, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871160761, + "Name": "TransmogFist_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 395330, + "ItemTypesGBID": -2094596416, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1234261285, + "Name": "TransmogStaff_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 450340, + "ItemTypesGBID": 140658708, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -2115691356, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1003759233, + "Name": "TransmogPolearm_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 272057, + "ItemTypesGBID": -1203595600, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1337763520, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1862484577, + "Name": "TransmogSword_241_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 331905, + "ItemTypesGBID": 140782159, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2127738885, + "Name": "TransmogFlail_241_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 403860, + "ItemTypesGBID": -1363671102, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -873321487, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1990947631, + "Name": "TransmogAxe_241_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 449477, + "ItemTypesGBID": 119458520, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700547783, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1990947630, + "Name": "TransmogAxe_241_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 271600, + "ItemTypesGBID": 119458520, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1700547783, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -53007604, + "Name": "TransmogSpear_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 272047, + "ItemTypesGBID": 140519163, + "Flags": 545390592, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101312757, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2127738884, + "Name": "TransmogFlail_241_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 424257, + "ItemTypesGBID": -1363671135, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871160760, + "Name": "TransmogFist_241_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 408775, + "ItemTypesGBID": -2094596416, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1862484578, + "Name": "TransmogSword_241_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 271633, + "ItemTypesGBID": 140782159, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1453914927, + "Name": "TransmogXbow_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 395324, + "ItemTypesGBID": -1338851342, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 181031810, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1471771449, + "Name": "TransmogMace_241_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 450124, + "ItemTypesGBID": 4026134, + "Flags": 545390592, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1656026176, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1862484579, + "Name": "TransmogSword_241_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 271635, + "ItemTypesGBID": 140782159, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1862484580, + "Name": "TransmogSword_241_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 271637, + "ItemTypesGBID": 140782159, + "Flags": 537001984, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1257049891, + "Name": "Unique_Ring_024_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 260327, + "ItemTypesGBID": 4214896, + "Flags": 141393, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 377084, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 78, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": 1564584523, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 4, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 197460071, + "Name": "x1_Amulet_norm_unique_25", + "GBID": 0, + "PAD": 0, + "SNOActor": 298057, + "ItemTypesGBID": -365243096, + "Flags": 16918609, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 13000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 377084, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + 769903539, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 4, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2111174222, + "Name": "Unique_Sword_1H_Promo_02_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 376463, + "ItemTypesGBID": 140782159, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359587, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451807929, + "Name": "Unique_Gem_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405775, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 383014, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 383014, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451157, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451771992, + "Name": "Unique_Gem_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405781, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403456, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403456, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403457, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451736055, + "Name": "Unique_Gem_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405783, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403459, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403459, + "Formula": [] + }, + { + "AttributeId": 1213, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451700118, + "Name": "Unique_Gem_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405792, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403460, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403460, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403560, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451664181, + "Name": "Unique_Gem_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405793, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403461, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403461, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403556, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451628244, + "Name": "Unique_Gem_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405794, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403462, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403462, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403600, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451592307, + "Name": "Unique_Gem_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405795, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403463, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403463, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403620, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451556370, + "Name": "Unique_Gem_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405796, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403464, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403464, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403524, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": 150, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451520433, + "Name": "Unique_Gem_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405797, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403465, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403465, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403624, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450657945, + "Name": "Unique_Gem_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405798, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403466, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403466, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403472, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450622008, + "Name": "Unique_Gem_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405800, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403467, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403467, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403687, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450586071, + "Name": "Unique_Gem_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405801, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403468, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403468, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403727, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450550134, + "Name": "Unique_Gem_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405802, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403469, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403469, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403473, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450514197, + "Name": "Unique_Gem_014_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405803, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403470, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403470, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403784, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": 50, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450478260, + "Name": "Unique_Gem_015_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 405804, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403471, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 403471, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 403785, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450442323, + "Name": "Unique_Gem_016_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 428033, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428029, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 428029, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428030, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": 100, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450406386, + "Name": "Unique_Gem_017_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 428034, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428031, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 2, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 428031, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428032, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450370449, + "Name": "Unique_Gem_018_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 428345, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428348, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 4, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 428348, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428349, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450334512, + "Name": "Unique_Gem_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 428346, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428350, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 428350, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428351, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": 100, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -449472024, + "Name": "Unique_Gem_020_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 428347, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428352, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 428352, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428353, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -449436087, + "Name": "Unique_Gem_021_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 428355, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428354, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 3, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 428354, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428356, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": 50, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -449400150, + "Name": "Unique_Gem_022_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 454794, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454736, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -545974251, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 454736, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454737, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -449364213, + "Name": "Unique_Gem_023_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 483318, + "ItemTypesGBID": 1888008307, + "Flags": 16785425, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1315690660, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483319, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": 1293, + "SNOParam": 483319, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483320, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": 25, + "JewelMaxRank": 99, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2124201264, + "Name": "Unique_Shoulder_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 385122, + "ItemTypesGBID": -940830407, + "Flags": 16777217, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 16, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490250, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1212, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + 982068194, + 715115171, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1567104614, + "Name": "Unique_Ring_Promo_01_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 385969, + "ItemTypesGBID": 4214896, + "Flags": 16777217, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967348, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1212, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1143, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + 512004501, + 1616088365, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1648785177, + "Name": "Unique_Neck_Promo_01_NX1", + "GBID": 0, + "PAD": 0, + "SNOActor": 479062, + "ItemTypesGBID": -365243096, + "Flags": 16777217, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1212, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 143839492, + 982068194, + 1616088365, + 1220289425, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 357734652, + "Name": "Consumable_Add_Sockets_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 403611, + "ItemTypesGBID": -1380314094, + "Flags": 17836033, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 417, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450211266, + "Name": "Unique_Ring_500_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318241, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450247203, + "Name": "Unique_Ring_501_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318300, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450283140, + "Name": "Unique_Ring_502_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318346, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450319077, + "Name": "Unique_Ring_503_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318347, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450355014, + "Name": "Unique_Ring_504_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318348, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450390951, + "Name": "Unique_Ring_505_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318349, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450426888, + "Name": "Unique_Ring_506_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318351, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450462825, + "Name": "Unique_Ring_507_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318358, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450498762, + "Name": "Unique_Ring_508_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318359, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1450534699, + "Name": "Unique_Ring_509_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318360, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451397187, + "Name": "Unique_Ring_510_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318371, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451433124, + "Name": "Unique_Ring_511_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318372, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451469061, + "Name": "Unique_Ring_512_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318374, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451504998, + "Name": "Unique_Ring_513_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318375, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451540935, + "Name": "Unique_Ring_514_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318376, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451576872, + "Name": "Unique_Ring_515_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318377, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451612809, + "Name": "Unique_Ring_516_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318378, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451648746, + "Name": "Unique_Ring_517_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318379, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451684683, + "Name": "Unique_Ring_518_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318380, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1451720620, + "Name": "Unique_Ring_519_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318381, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452583108, + "Name": "Unique_Ring_520_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318382, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452619045, + "Name": "Unique_Ring_521_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318383, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452654982, + "Name": "Unique_Ring_522_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318384, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452690919, + "Name": "Unique_Ring_523_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318385, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452726856, + "Name": "Unique_Ring_524_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318386, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452762793, + "Name": "Unique_Ring_525_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318410, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452798730, + "Name": "Unique_Ring_526_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318411, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452834667, + "Name": "Unique_Ring_527_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318412, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452870604, + "Name": "Unique_Ring_528_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318417, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1452906541, + "Name": "Unique_Ring_529_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318418, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1453769029, + "Name": "Unique_Ring_530_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318419, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1453804966, + "Name": "Unique_Ring_531_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318420, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1453840903, + "Name": "Unique_Ring_532_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318421, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1453876840, + "Name": "Unique_Ring_533_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318423, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1453912777, + "Name": "Unique_Ring_534_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318426, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1453948714, + "Name": "Unique_Ring_535_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318427, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1453984651, + "Name": "Unique_Ring_536_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318428, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1454020588, + "Name": "Unique_Ring_537_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318430, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1454056525, + "Name": "Unique_Ring_538_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318431, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1454092462, + "Name": "Unique_Ring_539_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318432, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1454954950, + "Name": "Unique_Ring_540_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318433, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1454990887, + "Name": "Unique_Ring_541_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318434, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1455026824, + "Name": "Unique_Ring_542_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318435, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1455062761, + "Name": "Unique_Ring_543_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318436, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1455098698, + "Name": "Unique_Ring_544_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318715, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1455134635, + "Name": "Unique_Ring_545_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318716, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1455170572, + "Name": "Unique_Ring_546_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318717, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1455206509, + "Name": "Unique_Ring_547_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318718, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1455242446, + "Name": "Unique_Ring_548_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318719, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1455278383, + "Name": "Unique_Ring_549_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318720, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456140871, + "Name": "Unique_Ring_550_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318721, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456176808, + "Name": "Unique_Ring_551_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318722, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456212745, + "Name": "Unique_Ring_552_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318724, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456248682, + "Name": "Unique_Ring_553_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318730, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456284619, + "Name": "Unique_Ring_554_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318731, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456320556, + "Name": "Unique_Ring_555_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318732, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456356493, + "Name": "Unique_Ring_556_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318733, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456392430, + "Name": "Unique_Ring_557_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318734, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456428367, + "Name": "Unique_Ring_558_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318740, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1456464304, + "Name": "Unique_Ring_559_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318741, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457326792, + "Name": "Unique_Ring_560_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318742, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457362729, + "Name": "Unique_Ring_561_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318743, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457398666, + "Name": "Unique_Ring_562_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318744, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457434603, + "Name": "Unique_Ring_563_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318745, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457470540, + "Name": "Unique_Ring_564_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318746, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457506477, + "Name": "Unique_Ring_565_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318747, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457542414, + "Name": "Unique_Ring_566_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318748, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457578351, + "Name": "Unique_Ring_567_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318749, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457614288, + "Name": "Unique_Ring_568_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318750, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1457650225, + "Name": "Unique_Ring_569_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318751, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458512713, + "Name": "Unique_Ring_570_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318752, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458548650, + "Name": "Unique_Ring_571_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318753, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458584587, + "Name": "Unique_Ring_572_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318754, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458620524, + "Name": "Unique_Ring_573_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318755, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458656461, + "Name": "Unique_Ring_574_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318756, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458692398, + "Name": "Unique_Ring_575_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318757, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458728335, + "Name": "Unique_Ring_576_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318758, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458764272, + "Name": "Unique_Ring_577_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318759, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458800209, + "Name": "Unique_Ring_578_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318760, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458836146, + "Name": "Unique_Ring_579_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318761, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459698634, + "Name": "Unique_Ring_580_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318762, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459734571, + "Name": "Unique_Ring_581_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318763, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459770508, + "Name": "Unique_Ring_582_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318764, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459806445, + "Name": "Unique_Ring_583_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318765, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459842382, + "Name": "Unique_Ring_584_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318766, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459878319, + "Name": "Unique_Ring_585_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318767, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459914256, + "Name": "Unique_Ring_586_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318768, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459950193, + "Name": "Unique_Ring_587_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318769, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1459986130, + "Name": "Unique_Ring_588_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318770, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1460022067, + "Name": "Unique_Ring_589_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318771, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1460884555, + "Name": "Unique_Ring_590_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318772, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1460920492, + "Name": "Unique_Ring_591_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318773, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1460956429, + "Name": "Unique_Ring_592_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318774, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1460992366, + "Name": "Unique_Ring_593_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318775, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1461028303, + "Name": "Unique_Ring_594_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318776, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1461064240, + "Name": "Unique_Ring_595_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318777, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1461100177, + "Name": "Unique_Ring_596_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318778, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1461136114, + "Name": "Unique_Ring_597_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318779, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1461172051, + "Name": "Unique_Ring_598_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318780, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1461207988, + "Name": "Unique_Ring_599_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318781, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489346659, + "Name": "Unique_Ring_600_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318782, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489382596, + "Name": "Unique_Ring_601_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318783, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489418533, + "Name": "Unique_Ring_602_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318784, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489454470, + "Name": "Unique_Ring_603_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318785, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489490407, + "Name": "Unique_Ring_604_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318786, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489526344, + "Name": "Unique_Ring_605_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318787, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489562281, + "Name": "Unique_Ring_606_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318788, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489598218, + "Name": "Unique_Ring_607_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318789, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489634155, + "Name": "Unique_Ring_608_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318790, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1489670092, + "Name": "Unique_Ring_609_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318791, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490532580, + "Name": "Unique_Ring_610_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318792, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490568517, + "Name": "Unique_Ring_611_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318793, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490604454, + "Name": "Unique_Ring_612_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318794, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490640391, + "Name": "Unique_Ring_613_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318795, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490676328, + "Name": "Unique_Ring_614_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318796, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490712265, + "Name": "Unique_Ring_615_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318797, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490748202, + "Name": "Unique_Ring_616_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318798, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490784139, + "Name": "Unique_Ring_617_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318799, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490820076, + "Name": "Unique_Ring_618_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318800, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1490856013, + "Name": "Unique_Ring_619_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318801, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1491718501, + "Name": "Unique_Ring_620_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318802, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1491754438, + "Name": "Unique_Ring_621_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318803, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1491790375, + "Name": "Unique_Ring_622_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318804, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1491826312, + "Name": "Unique_Ring_623_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318805, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1491862249, + "Name": "Unique_Ring_624_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318806, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1491898186, + "Name": "Unique_Ring_625_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318807, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1491934123, + "Name": "Unique_Ring_626_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318808, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1491970060, + "Name": "Unique_Ring_627_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318809, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1492005997, + "Name": "Unique_Ring_628_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318810, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1492041934, + "Name": "Unique_Ring_629_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318811, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1492904422, + "Name": "Unique_Ring_630_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318812, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1492940359, + "Name": "Unique_Ring_631_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318813, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1492976296, + "Name": "Unique_Ring_632_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318814, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1493012233, + "Name": "Unique_Ring_633_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318815, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1493048170, + "Name": "Unique_Ring_634_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318816, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1493084107, + "Name": "Unique_Ring_635_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318817, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1493120044, + "Name": "Unique_Ring_636_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318818, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1493155981, + "Name": "Unique_Ring_637_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318819, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1493191918, + "Name": "Unique_Ring_638_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318820, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1493227855, + "Name": "Unique_Ring_639_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318821, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494090343, + "Name": "Unique_Ring_640_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318822, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494126280, + "Name": "Unique_Ring_641_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318823, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494162217, + "Name": "Unique_Ring_642_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318824, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494198154, + "Name": "Unique_Ring_643_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318825, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494234091, + "Name": "Unique_Ring_644_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318826, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494270028, + "Name": "Unique_Ring_645_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318827, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494305965, + "Name": "Unique_Ring_646_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318828, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494341902, + "Name": "Unique_Ring_647_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318829, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494377839, + "Name": "Unique_Ring_648_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318830, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494413776, + "Name": "Unique_Ring_649_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318831, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495276264, + "Name": "Unique_Ring_650_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318832, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495312201, + "Name": "Unique_Ring_651_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318833, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495348138, + "Name": "Unique_Ring_652_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318834, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495384075, + "Name": "Unique_Ring_653_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318835, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495420012, + "Name": "Unique_Ring_654_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318849, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495455949, + "Name": "Unique_Ring_655_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318850, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495491886, + "Name": "Unique_Ring_656_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318851, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495527823, + "Name": "Unique_Ring_657_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318852, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495563760, + "Name": "Unique_Ring_658_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318853, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1495599697, + "Name": "Unique_Ring_659_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318854, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496462185, + "Name": "Unique_Ring_660_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318855, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496498122, + "Name": "Unique_Ring_661_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318856, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496534059, + "Name": "Unique_Ring_662_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318857, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496569996, + "Name": "Unique_Ring_663_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318858, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496605933, + "Name": "Unique_Ring_664_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318860, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496641870, + "Name": "Unique_Ring_665_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318861, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496677807, + "Name": "Unique_Ring_666_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318862, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496713744, + "Name": "Unique_Ring_667_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318863, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496749681, + "Name": "Unique_Ring_668_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318864, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1496785618, + "Name": "Unique_Ring_669_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318865, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497648106, + "Name": "Unique_Ring_670_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318866, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497684043, + "Name": "Unique_Ring_671_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318867, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497719980, + "Name": "Unique_Ring_672_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318868, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497755917, + "Name": "Unique_Ring_673_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318869, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497791854, + "Name": "Unique_Ring_674_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318870, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497827791, + "Name": "Unique_Ring_675_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318871, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497863728, + "Name": "Unique_Ring_676_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318872, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497899665, + "Name": "Unique_Ring_677_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318873, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497935602, + "Name": "Unique_Ring_678_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318874, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497971539, + "Name": "Unique_Ring_679_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318875, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1498834027, + "Name": "Unique_Ring_680_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318876, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1498869964, + "Name": "Unique_Ring_681_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318877, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1498905901, + "Name": "Unique_Ring_682_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318878, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1498941838, + "Name": "Unique_Ring_683_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318879, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1498977775, + "Name": "Unique_Ring_684_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318880, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1499013712, + "Name": "Unique_Ring_685_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318881, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1499049649, + "Name": "Unique_Ring_686_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318882, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1499085586, + "Name": "Unique_Ring_687_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318883, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1499121523, + "Name": "Unique_Ring_688_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318884, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1499157460, + "Name": "Unique_Ring_689_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318885, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500019948, + "Name": "Unique_Ring_690_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318886, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500055885, + "Name": "Unique_Ring_691_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318887, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500091822, + "Name": "Unique_Ring_692_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318888, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500127759, + "Name": "Unique_Ring_693_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318889, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500163696, + "Name": "Unique_Ring_694_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318890, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500199633, + "Name": "Unique_Ring_695_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318891, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500235570, + "Name": "Unique_Ring_696_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318892, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500271507, + "Name": "Unique_Ring_697_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318893, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500307444, + "Name": "Unique_Ring_698_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318894, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500343381, + "Name": "Unique_Ring_699_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 318895, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528482052, + "Name": "Unique_Ring_700_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359537, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528517989, + "Name": "Unique_Ring_701_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359538, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528553926, + "Name": "Unique_Ring_702_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359539, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528589863, + "Name": "Unique_Ring_703_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359540, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528625800, + "Name": "Unique_Ring_704_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359545, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528661737, + "Name": "Unique_Ring_705_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359546, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528697674, + "Name": "Unique_Ring_706_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359550, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528733611, + "Name": "Unique_Ring_707_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359552, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528769548, + "Name": "Unique_Ring_708_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359553, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1528805485, + "Name": "Unique_Ring_709_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359554, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529667973, + "Name": "Unique_Ring_710_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359555, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529703910, + "Name": "Unique_Ring_711_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359556, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529739847, + "Name": "Unique_Ring_712_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359557, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529775784, + "Name": "Unique_Ring_713_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359558, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529811721, + "Name": "Unique_Ring_714_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359559, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529847658, + "Name": "Unique_Ring_715_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359560, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529883595, + "Name": "Unique_Ring_716_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359561, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529919532, + "Name": "Unique_Ring_717_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359562, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529955469, + "Name": "Unique_Ring_718_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359563, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1529991406, + "Name": "Unique_Ring_719_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359564, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1530853894, + "Name": "Unique_Ring_720_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359565, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1530889831, + "Name": "Unique_Ring_721_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359566, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1530925768, + "Name": "Unique_Ring_722_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359567, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1530961705, + "Name": "Unique_Ring_723_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359568, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1530997642, + "Name": "Unique_Ring_724_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359569, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1531033579, + "Name": "Unique_Ring_725_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359570, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1531069516, + "Name": "Unique_Ring_726_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359573, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1531105453, + "Name": "Unique_Ring_727_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359574, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1531141390, + "Name": "Unique_Ring_728_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359576, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1531177327, + "Name": "Unique_Ring_729_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359577, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532039815, + "Name": "Unique_Ring_730_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359578, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532075752, + "Name": "Unique_Ring_731_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359579, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532111689, + "Name": "Unique_Ring_732_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359580, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532147626, + "Name": "Unique_Ring_733_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359581, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532183563, + "Name": "Unique_Ring_734_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359582, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532219500, + "Name": "Unique_Ring_735_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359583, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532255437, + "Name": "Unique_Ring_736_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359584, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532291374, + "Name": "Unique_Ring_737_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359585, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532327311, + "Name": "Unique_Ring_738_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359586, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1532363248, + "Name": "Unique_Ring_739_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359587, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533225736, + "Name": "Unique_Ring_740_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 367462, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533261673, + "Name": "Unique_Ring_741_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359591, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533297610, + "Name": "Unique_Ring_742_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359593, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533333547, + "Name": "Unique_Ring_743_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359594, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533369484, + "Name": "Unique_Ring_744_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359597, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533405421, + "Name": "Unique_Ring_745_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359598, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533441358, + "Name": "Unique_Ring_746_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359601, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533477295, + "Name": "Unique_Ring_747_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359602, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533513232, + "Name": "Unique_Ring_748_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359604, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1533549169, + "Name": "Unique_Ring_749_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359605, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534411657, + "Name": "Unique_Ring_750_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 359606, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534447594, + "Name": "Unique_Ring_751_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397780, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534483531, + "Name": "Unique_Ring_752_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397781, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534519468, + "Name": "Unique_Ring_753_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397782, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534555405, + "Name": "Unique_Ring_754_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397783, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534591342, + "Name": "Unique_Ring_755_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397784, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534627279, + "Name": "Unique_Ring_756_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397785, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534663216, + "Name": "Unique_Ring_757_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397786, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534699153, + "Name": "Unique_Ring_758_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397787, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1534735090, + "Name": "Unique_Ring_759_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397788, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535597578, + "Name": "Unique_Ring_760_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397789, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535633515, + "Name": "Unique_Ring_761_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397792, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535669452, + "Name": "Unique_Ring_762_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397802, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535705389, + "Name": "Unique_Ring_763_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397805, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535741326, + "Name": "Unique_Ring_764_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397806, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535777263, + "Name": "Unique_Ring_765_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397807, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535813200, + "Name": "Unique_Ring_766_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397808, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535849137, + "Name": "Unique_Ring_767_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397809, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535885074, + "Name": "Unique_Ring_768_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397811, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1535921011, + "Name": "Unique_Ring_769_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397812, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536783499, + "Name": "Unique_Ring_770_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397813, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536819436, + "Name": "Unique_Ring_771_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397814, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536855373, + "Name": "Unique_Ring_772_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397815, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536891310, + "Name": "Unique_Ring_773_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397816, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536927247, + "Name": "Unique_Ring_774_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397817, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536963184, + "Name": "Unique_Ring_775_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397818, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536999121, + "Name": "Unique_Ring_776_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397819, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1537035058, + "Name": "Unique_Ring_777_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397820, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1537070995, + "Name": "Unique_Ring_778_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397822, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1537106932, + "Name": "Unique_Ring_779_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397831, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1537969420, + "Name": "Unique_Ring_780_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397832, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538005357, + "Name": "Unique_Ring_781_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397833, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538041294, + "Name": "Unique_Ring_782_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397834, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538077231, + "Name": "Unique_Ring_783_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397835, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538113168, + "Name": "Unique_Ring_784_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397836, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538149105, + "Name": "Unique_Ring_785_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397838, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538185042, + "Name": "Unique_Ring_786_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397839, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538220979, + "Name": "Unique_Ring_787_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397841, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538256916, + "Name": "Unique_Ring_788_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397842, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538292853, + "Name": "Unique_Ring_789_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397843, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539155341, + "Name": "Unique_Ring_790_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397844, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539191278, + "Name": "Unique_Ring_791_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397845, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539227215, + "Name": "Unique_Ring_792_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397846, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539263152, + "Name": "Unique_Ring_793_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397847, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539299089, + "Name": "Unique_Ring_794_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397848, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539335026, + "Name": "Unique_Ring_795_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397849, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539370963, + "Name": "Unique_Ring_796_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397850, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539406900, + "Name": "Unique_Ring_797_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397851, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539442837, + "Name": "Unique_Ring_798_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397852, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1539478774, + "Name": "Unique_Ring_799_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397853, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567617445, + "Name": "Unique_Ring_800_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 397854, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567653382, + "Name": "Unique_Ring_801_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401366, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567689319, + "Name": "Unique_Ring_802_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401367, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567725256, + "Name": "Unique_Ring_803_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401368, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567761193, + "Name": "Unique_Ring_804_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401369, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567797130, + "Name": "Unique_Ring_805_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401370, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567833067, + "Name": "Unique_Ring_806_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401371, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567869004, + "Name": "Unique_Ring_807_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401378, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567904941, + "Name": "Unique_Ring_808_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401379, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567940878, + "Name": "Unique_Ring_809_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401380, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568803366, + "Name": "Unique_Ring_810_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401381, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568839303, + "Name": "Unique_Ring_811_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401382, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568875240, + "Name": "Unique_Ring_812_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401383, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568911177, + "Name": "Unique_Ring_813_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401384, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568947114, + "Name": "Unique_Ring_814_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401385, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568983051, + "Name": "Unique_Ring_815_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401386, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1569018988, + "Name": "Unique_Ring_816_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401387, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1569054925, + "Name": "Unique_Ring_817_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401388, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1569090862, + "Name": "Unique_Ring_818_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401389, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1569126799, + "Name": "Unique_Ring_819_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401390, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1569989287, + "Name": "Unique_Ring_820_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401391, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570025224, + "Name": "Unique_Ring_821_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401392, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570061161, + "Name": "Unique_Ring_822_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401393, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570097098, + "Name": "Unique_Ring_823_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401394, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570133035, + "Name": "Unique_Ring_824_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401395, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570168972, + "Name": "Unique_Ring_825_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401414, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570204909, + "Name": "Unique_Ring_826_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401415, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570240846, + "Name": "Unique_Ring_827_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401416, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570276783, + "Name": "Unique_Ring_828_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401417, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1570312720, + "Name": "Unique_Ring_829_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401418, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571175208, + "Name": "Unique_Ring_830_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401419, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571211145, + "Name": "Unique_Ring_831_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401420, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571247082, + "Name": "Unique_Ring_832_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401421, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571283019, + "Name": "Unique_Ring_833_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401422, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571318956, + "Name": "Unique_Ring_834_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401423, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571354893, + "Name": "Unique_Ring_835_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401424, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571390830, + "Name": "Unique_Ring_836_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401425, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571426767, + "Name": "Unique_Ring_837_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401426, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571462704, + "Name": "Unique_Ring_838_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401427, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571498641, + "Name": "Unique_Ring_839_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401428, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572361129, + "Name": "Unique_Ring_840_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401429, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572397066, + "Name": "Unique_Ring_841_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401430, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572433003, + "Name": "Unique_Ring_842_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401458, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572468940, + "Name": "Unique_Ring_843_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401459, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572504877, + "Name": "Unique_Ring_844_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401460, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572540814, + "Name": "Unique_Ring_845_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401461, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572576751, + "Name": "Unique_Ring_846_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401462, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572612688, + "Name": "Unique_Ring_847_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401463, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572648625, + "Name": "Unique_Ring_848_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401464, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572684562, + "Name": "Unique_Ring_849_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401465, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573547050, + "Name": "Unique_Ring_850_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401466, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573582987, + "Name": "Unique_Ring_851_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401467, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573618924, + "Name": "Unique_Ring_852_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401468, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573654861, + "Name": "Unique_Ring_853_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401469, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573690798, + "Name": "Unique_Ring_854_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401470, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573726735, + "Name": "Unique_Ring_855_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401471, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573762672, + "Name": "Unique_Ring_856_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401472, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573798609, + "Name": "Unique_Ring_857_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401473, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573834546, + "Name": "Unique_Ring_858_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401474, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1573870483, + "Name": "Unique_Ring_859_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401475, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574732971, + "Name": "Unique_Ring_860_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401476, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574768908, + "Name": "Unique_Ring_861_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401495, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574804845, + "Name": "Unique_Ring_862_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401496, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574840782, + "Name": "Unique_Ring_863_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401497, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574876719, + "Name": "Unique_Ring_864_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401498, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574912656, + "Name": "Unique_Ring_865_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401499, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574948593, + "Name": "Unique_Ring_866_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401500, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574984530, + "Name": "Unique_Ring_867_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401501, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1575020467, + "Name": "Unique_Ring_868_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401502, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1575056404, + "Name": "Unique_Ring_869_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401503, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1575918892, + "Name": "Unique_Ring_870_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401504, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1575954829, + "Name": "Unique_Ring_871_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401505, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1575990766, + "Name": "Unique_Ring_872_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401506, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1576026703, + "Name": "Unique_Ring_873_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401507, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1576062640, + "Name": "Unique_Ring_874_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401508, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1576098577, + "Name": "Unique_Ring_875_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401509, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1576134514, + "Name": "Unique_Ring_876_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401510, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1576170451, + "Name": "Unique_Ring_877_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 401511, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1576206388, + "Name": "Unique_Ring_878_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 409335, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1576242325, + "Name": "Unique_Ring_879_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 439528, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577104813, + "Name": "Unique_Ring_880_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 442744, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577140750, + "Name": "Unique_Ring_881_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577176687, + "Name": "Unique_Ring_882_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577212624, + "Name": "Unique_Ring_883_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577248561, + "Name": "Unique_Ring_884_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577284498, + "Name": "Unique_Ring_885_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577320435, + "Name": "Unique_Ring_886_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577356372, + "Name": "Unique_Ring_887_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577392309, + "Name": "Unique_Ring_888_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1577428246, + "Name": "Unique_Ring_889_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578290734, + "Name": "Unique_Ring_890_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578326671, + "Name": "Unique_Ring_891_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578362608, + "Name": "Unique_Ring_892_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578398545, + "Name": "Unique_Ring_893_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578434482, + "Name": "Unique_Ring_894_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578470419, + "Name": "Unique_Ring_895_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578506356, + "Name": "Unique_Ring_896_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578542293, + "Name": "Unique_Ring_897_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578578230, + "Name": "Unique_Ring_898_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1578614167, + "Name": "Unique_Ring_899_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 409431, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1606752838, + "Name": "Unique_Ring_900_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 409428, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1606788775, + "Name": "Unique_Ring_901_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402407, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1606824712, + "Name": "Unique_Ring_902_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402408, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1606860649, + "Name": "Unique_Ring_903_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402411, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1606896586, + "Name": "Unique_Ring_904_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402406, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1606932523, + "Name": "Unique_Ring_905_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402413, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1606968460, + "Name": "Unique_Ring_906_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402414, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1607004397, + "Name": "Unique_Ring_907_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402415, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1607040334, + "Name": "Unique_Ring_908_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402416, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1607076271, + "Name": "Unique_Ring_909_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402444, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1607938759, + "Name": "Unique_Ring_910_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402446, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1607974696, + "Name": "Unique_Ring_911_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402447, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608010633, + "Name": "Unique_Ring_912_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402448, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608046570, + "Name": "Unique_Ring_913_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402449, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608082507, + "Name": "Unique_Ring_914_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402450, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608118444, + "Name": "Unique_Ring_915_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402451, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608154381, + "Name": "Unique_Ring_916_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402455, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608190318, + "Name": "Unique_Ring_917_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402456, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608226255, + "Name": "Unique_Ring_918_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402457, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608262192, + "Name": "Unique_Ring_919_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402458, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609124680, + "Name": "Unique_Ring_920_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402459, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609160617, + "Name": "Unique_Ring_921_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402460, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609196554, + "Name": "Unique_Ring_922_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402461, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609232491, + "Name": "Unique_Ring_923_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402462, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609268428, + "Name": "Unique_Ring_924_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402463, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609304365, + "Name": "Unique_Ring_925_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402464, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609340302, + "Name": "Unique_Ring_926_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402465, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609376239, + "Name": "Unique_Ring_927_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402466, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609412176, + "Name": "Unique_Ring_928_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402467, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1609448113, + "Name": "Unique_Ring_929_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402469, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610310601, + "Name": "Unique_Ring_930_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402470, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610346538, + "Name": "Unique_Ring_931_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402471, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610382475, + "Name": "Unique_Ring_932_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402472, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610418412, + "Name": "Unique_Ring_933_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402473, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610454349, + "Name": "Unique_Ring_934_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402474, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610490286, + "Name": "Unique_Ring_935_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402475, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610526223, + "Name": "Unique_Ring_936_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402476, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610562160, + "Name": "Unique_Ring_937_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402477, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610598097, + "Name": "Unique_Ring_938_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402478, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1610634034, + "Name": "Unique_Ring_939_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402479, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611496522, + "Name": "Unique_Ring_940_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 402480, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611532459, + "Name": "Unique_Ring_941_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440913, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611568396, + "Name": "Unique_Ring_942_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611604333, + "Name": "Unique_Ring_943_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611640270, + "Name": "Unique_Ring_944_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611676207, + "Name": "Unique_Ring_945_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611712144, + "Name": "Unique_Ring_946_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611748081, + "Name": "Unique_Ring_947_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611784018, + "Name": "Unique_Ring_948_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1611819955, + "Name": "Unique_Ring_949_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612682443, + "Name": "Unique_Ring_950_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612718380, + "Name": "Unique_Ring_951_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612754317, + "Name": "Unique_Ring_952_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612790254, + "Name": "Unique_Ring_953_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612826191, + "Name": "Unique_Ring_954_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612862128, + "Name": "Unique_Ring_955_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612898065, + "Name": "Unique_Ring_956_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612934002, + "Name": "Unique_Ring_957_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612969939, + "Name": "Unique_Ring_958_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1613005876, + "Name": "Unique_Ring_959_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1613868364, + "Name": "Unique_Ring_960_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1613904301, + "Name": "Unique_Ring_961_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1613940238, + "Name": "Unique_Ring_962_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1613976175, + "Name": "Unique_Ring_963_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1614012112, + "Name": "Unique_Ring_964_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1614048049, + "Name": "Unique_Ring_965_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1614083986, + "Name": "Unique_Ring_966_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1614119923, + "Name": "Unique_Ring_967_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1614155860, + "Name": "Unique_Ring_968_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1614191797, + "Name": "Unique_Ring_969_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615054285, + "Name": "Unique_Ring_970_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615090222, + "Name": "Unique_Ring_971_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615126159, + "Name": "Unique_Ring_972_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615162096, + "Name": "Unique_Ring_973_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615198033, + "Name": "Unique_Ring_974_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615233970, + "Name": "Unique_Ring_975_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615269907, + "Name": "Unique_Ring_976_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615305844, + "Name": "Unique_Ring_977_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615341781, + "Name": "Unique_Ring_978_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1615377718, + "Name": "Unique_Ring_979_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616240206, + "Name": "Unique_Ring_980_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616276143, + "Name": "Unique_Ring_981_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616312080, + "Name": "Unique_Ring_982_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616348017, + "Name": "Unique_Ring_983_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616383954, + "Name": "Unique_Ring_984_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616419891, + "Name": "Unique_Ring_985_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616455828, + "Name": "Unique_Ring_986_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616491765, + "Name": "Unique_Ring_987_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616527702, + "Name": "Unique_Ring_988_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1616563639, + "Name": "Unique_Ring_989_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617426127, + "Name": "Unique_Ring_990_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617462064, + "Name": "Unique_Ring_991_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617498001, + "Name": "Unique_Ring_992_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617533938, + "Name": "Unique_Ring_993_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617569875, + "Name": "Unique_Ring_994_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617605812, + "Name": "Unique_Ring_995_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617641749, + "Name": "Unique_Ring_996_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617677686, + "Name": "Unique_Ring_997_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617713623, + "Name": "Unique_Ring_998_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1617749560, + "Name": "Unique_Ring_999_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -260286930, + "Name": "Unique_Ring_1000_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -309023754, + "Name": "P1_Unique_Ring_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -309023753, + "Name": "P1_Unique_Ring_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -309023752, + "Name": "P1_Unique_Ring_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -309023751, + "Name": "P1_Unique_Ring_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238345, + "Name": "P2_Unique_Ring_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484057, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238344, + "Name": "P2_Unique_Ring_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484279, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238343, + "Name": "P2_Unique_Ring_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484320, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238342, + "Name": "P2_Unique_Ring_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484426, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238341, + "Name": "P2_Unique_Ring_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484497, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238340, + "Name": "P2_Unique_Ring_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423229, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238339, + "Name": "P2_Unique_Ring_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423230, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238338, + "Name": "P2_Unique_Ring_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423231, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238337, + "Name": "P2_Unique_Ring_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423233, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238313, + "Name": "P2_Unique_Ring_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423234, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238312, + "Name": "P2_Unique_Ring_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423235, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238311, + "Name": "P2_Unique_Ring_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423236, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238310, + "Name": "P2_Unique_Ring_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423237, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238309, + "Name": "P2_Unique_Ring_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423238, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238308, + "Name": "P2_Unique_Ring_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423239, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238307, + "Name": "P2_Unique_Ring_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423240, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238306, + "Name": "P2_Unique_Ring_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423241, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238305, + "Name": "P2_Unique_Ring_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423242, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238304, + "Name": "P2_Unique_Ring_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423243, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238280, + "Name": "P2_Unique_Ring_020", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 423244, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238279, + "Name": "P2_Unique_Ring_021", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 427798, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238278, + "Name": "P2_Unique_Ring_022", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 427799, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238277, + "Name": "P2_Unique_Ring_023", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 428220, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238276, + "Name": "P2_Unique_Ring_024", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429648, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238275, + "Name": "P2_Unique_Ring_025", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429665, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238274, + "Name": "P2_Unique_Ring_026", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429673, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238273, + "Name": "P2_Unique_Ring_027", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429851, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238272, + "Name": "P2_Unique_Ring_028", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429855, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238271, + "Name": "P2_Unique_Ring_029", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429856, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238247, + "Name": "P2_Unique_Ring_030", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429857, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238246, + "Name": "P2_Unique_Ring_031", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 429885, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238245, + "Name": "P2_Unique_Ring_032", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430135, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238244, + "Name": "P2_Unique_Ring_033", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430228, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238243, + "Name": "P2_Unique_Ring_034", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430289, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238242, + "Name": "P2_Unique_Ring_035", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430671, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238241, + "Name": "P2_Unique_Ring_036", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430672, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238240, + "Name": "P2_Unique_Ring_037", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430673, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238239, + "Name": "P2_Unique_Ring_038", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430674, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238238, + "Name": "P2_Unique_Ring_039", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430675, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238214, + "Name": "P2_Unique_Ring_040", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430676, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238213, + "Name": "P2_Unique_Ring_041", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430677, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238212, + "Name": "P2_Unique_Ring_042", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430678, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238211, + "Name": "P2_Unique_Ring_043", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430679, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238210, + "Name": "P2_Unique_Ring_044", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430680, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238209, + "Name": "P2_Unique_Ring_045", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430681, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238208, + "Name": "P2_Unique_Ring_046", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430682, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238207, + "Name": "P2_Unique_Ring_047", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430683, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238206, + "Name": "P2_Unique_Ring_048", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430684, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238205, + "Name": "P2_Unique_Ring_049", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430685, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2140238181, + "Name": "P2_Unique_Ring_050", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 430686, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514360, + "Name": "P3_Unique_Ring_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436426, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514361, + "Name": "P3_Unique_Ring_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436427, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514362, + "Name": "P3_Unique_Ring_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436428, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514363, + "Name": "P3_Unique_Ring_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436430, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514364, + "Name": "P3_Unique_Ring_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436468, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514365, + "Name": "P3_Unique_Ring_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436472, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514366, + "Name": "P3_Unique_Ring_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436481, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514367, + "Name": "P3_Unique_Ring_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436521, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514368, + "Name": "P3_Unique_Ring_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437710, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514392, + "Name": "P3_Unique_Ring_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437711, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514393, + "Name": "P3_Unique_Ring_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437840, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514394, + "Name": "P3_Unique_Ring_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437843, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514395, + "Name": "P3_Unique_Ring_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437844, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514396, + "Name": "P3_Unique_Ring_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 437854, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514397, + "Name": "P3_Unique_Ring_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 439303, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514398, + "Name": "P3_Unique_Ring_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 439308, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514399, + "Name": "P3_Unique_Ring_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 439309, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514400, + "Name": "P3_Unique_Ring_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 439310, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514401, + "Name": "P3_Unique_Ring_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 439311, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514425, + "Name": "P3_Unique_Ring_020", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 439312, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514426, + "Name": "P3_Unique_Ring_021", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440235, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514427, + "Name": "P3_Unique_Ring_022", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440336, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514428, + "Name": "P3_Unique_Ring_023", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440434, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514429, + "Name": "P3_Unique_Ring_024", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440457, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514430, + "Name": "P3_Unique_Ring_025", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440568, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514431, + "Name": "P3_Unique_Ring_026", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440569, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514432, + "Name": "P3_Unique_Ring_027", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440598, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514433, + "Name": "P3_Unique_Ring_028", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440743, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514434, + "Name": "P3_Unique_Ring_029", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 440790, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514458, + "Name": "P3_Unique_Ring_030", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441113, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514459, + "Name": "P3_Unique_Ring_031", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441278, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514460, + "Name": "P3_Unique_Ring_032", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441279, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514461, + "Name": "P3_Unique_Ring_033", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441280, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514462, + "Name": "P3_Unique_Ring_034", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441294, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514463, + "Name": "P3_Unique_Ring_035", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441305, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514464, + "Name": "P3_Unique_Ring_036", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441318, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514465, + "Name": "P3_Unique_Ring_037", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441349, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514466, + "Name": "P3_Unique_Ring_038", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 441517, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514467, + "Name": "P3_Unique_Ring_039", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 442353, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514491, + "Name": "P3_Unique_Ring_040", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 442477, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514492, + "Name": "P3_Unique_Ring_041", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 442478, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514493, + "Name": "P3_Unique_Ring_042", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514494, + "Name": "P3_Unique_Ring_043", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514495, + "Name": "P3_Unique_Ring_044", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514496, + "Name": "P3_Unique_Ring_045", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514497, + "Name": "P3_Unique_Ring_046", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514498, + "Name": "P3_Unique_Ring_047", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514499, + "Name": "P3_Unique_Ring_048", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514500, + "Name": "P3_Unique_Ring_049", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323514524, + "Name": "P3_Unique_Ring_050", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700231, + "Name": "P4_Unique_Ring_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 444521, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700230, + "Name": "P4_Unique_Ring_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 444522, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700229, + "Name": "P4_Unique_Ring_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 444929, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700228, + "Name": "P4_Unique_Ring_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 444969, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700227, + "Name": "P4_Unique_Ring_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445008, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700226, + "Name": "P4_Unique_Ring_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445266, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700225, + "Name": "P4_Unique_Ring_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445274, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700224, + "Name": "P4_Unique_Ring_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445279, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700223, + "Name": "P4_Unique_Ring_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445427, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700199, + "Name": "P4_Unique_Ring_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445639, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700198, + "Name": "P4_Unique_Ring_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445692, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700197, + "Name": "P4_Unique_Ring_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445694, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700196, + "Name": "P4_Unique_Ring_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445765, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700195, + "Name": "P4_Unique_Ring_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445798, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700194, + "Name": "P4_Unique_Ring_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445814, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700193, + "Name": "P4_Unique_Ring_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445829, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700192, + "Name": "P4_Unique_Ring_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445920, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700191, + "Name": "P4_Unique_Ring_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445942, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700190, + "Name": "P4_Unique_Ring_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 445943, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700166, + "Name": "P4_Unique_Ring_020", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446008, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700165, + "Name": "P4_Unique_Ring_021", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446063, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700164, + "Name": "P4_Unique_Ring_022", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446142, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700163, + "Name": "P4_Unique_Ring_023", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446146, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700162, + "Name": "P4_Unique_Ring_024", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700161, + "Name": "P4_Unique_Ring_025", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446162, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700160, + "Name": "P4_Unique_Ring_026", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446187, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700159, + "Name": "P4_Unique_Ring_027", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446195, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700158, + "Name": "P4_Unique_Ring_028", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446318, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700157, + "Name": "P4_Unique_Ring_029", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446359, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700133, + "Name": "P4_Unique_Ring_030", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446502, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700132, + "Name": "P4_Unique_Ring_031", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446511, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700131, + "Name": "P4_Unique_Ring_032", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446541, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700130, + "Name": "P4_Unique_Ring_033", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446562, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700129, + "Name": "P4_Unique_Ring_034", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446565, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700128, + "Name": "P4_Unique_Ring_035", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446592, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700127, + "Name": "P4_Unique_Ring_036", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446615, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700126, + "Name": "P4_Unique_Ring_037", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446638, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700125, + "Name": "P4_Unique_Ring_038", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446639, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700124, + "Name": "P4_Unique_Ring_039", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446640, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700100, + "Name": "P4_Unique_Ring_040", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446641, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700099, + "Name": "P4_Unique_Ring_041", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446655, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700098, + "Name": "P4_Unique_Ring_042", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446734, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700097, + "Name": "P4_Unique_Ring_043", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446761, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700096, + "Name": "P4_Unique_Ring_044", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446762, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700095, + "Name": "P4_Unique_Ring_045", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 446969, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700094, + "Name": "P4_Unique_Ring_046", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447029, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700093, + "Name": "P4_Unique_Ring_047", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447030, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700092, + "Name": "P4_Unique_Ring_048", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447043, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700091, + "Name": "P4_Unique_Ring_049", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447060, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700067, + "Name": "P4_Unique_Ring_050", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447130, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700066, + "Name": "P4_Unique_Ring_051", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447290, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700065, + "Name": "P4_Unique_Ring_052", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447291, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700064, + "Name": "P4_Unique_Ring_053", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447295, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700063, + "Name": "P4_Unique_Ring_054", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447368, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700062, + "Name": "P4_Unique_Ring_055", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447372, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700061, + "Name": "P4_Unique_Ring_056", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447375, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700060, + "Name": "P4_Unique_Ring_057", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447541, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700059, + "Name": "P4_Unique_Ring_058", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447553, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700058, + "Name": "P4_Unique_Ring_059", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447581, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700034, + "Name": "P4_Unique_Ring_060", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447696, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700033, + "Name": "P4_Unique_Ring_061", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447816, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700032, + "Name": "P4_Unique_Ring_062", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447839, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700031, + "Name": "P4_Unique_Ring_063", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447843, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700030, + "Name": "P4_Unique_Ring_064", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 447905, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700029, + "Name": "P4_Unique_Ring_065", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 448998, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700028, + "Name": "P4_Unique_Ring_066", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449001, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700027, + "Name": "P4_Unique_Ring_067", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449021, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700026, + "Name": "P4_Unique_Ring_068", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449031, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700025, + "Name": "P4_Unique_Ring_069", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449037, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700001, + "Name": "P4_Unique_Ring_070", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449043, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507700000, + "Name": "P4_Unique_Ring_071", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449046, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699999, + "Name": "P4_Unique_Ring_072", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449048, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699998, + "Name": "P4_Unique_Ring_073", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449049, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699997, + "Name": "P4_Unique_Ring_074", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449063, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699996, + "Name": "P4_Unique_Ring_075", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449064, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699995, + "Name": "P4_Unique_Ring_076", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449114, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699994, + "Name": "P4_Unique_Ring_077", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449222, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699993, + "Name": "P4_Unique_Ring_078", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449236, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699992, + "Name": "P4_Unique_Ring_079", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449237, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699968, + "Name": "P4_Unique_Ring_080", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449252, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699967, + "Name": "P4_Unique_Ring_081", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449264, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699966, + "Name": "P4_Unique_Ring_082", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449671, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699965, + "Name": "P4_Unique_Ring_083", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 244, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449703, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699964, + "Name": "P4_Unique_Ring_084", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 450294, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699963, + "Name": "P4_Unique_Ring_085", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 450472, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699962, + "Name": "P4_Unique_Ring_086", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699961, + "Name": "P4_Unique_Ring_087", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699960, + "Name": "P4_Unique_Ring_088", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699959, + "Name": "P4_Unique_Ring_089", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699935, + "Name": "P4_Unique_Ring_090", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699934, + "Name": "P4_Unique_Ring_091", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699933, + "Name": "P4_Unique_Ring_092", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699932, + "Name": "P4_Unique_Ring_093", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1507699931, + "Name": "P4_Unique_Ring_094", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185706, + "Name": "P41_Unique_Ring_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451158, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185707, + "Name": "P41_Unique_Ring_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451160, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185708, + "Name": "P41_Unique_Ring_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451161, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185709, + "Name": "P41_Unique_Ring_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451162, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185710, + "Name": "P41_Unique_Ring_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451163, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185711, + "Name": "P41_Unique_Ring_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451164, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185712, + "Name": "P41_Unique_Ring_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451165, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185713, + "Name": "P41_Unique_Ring_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451166, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185714, + "Name": "P41_Unique_Ring_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451167, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185738, + "Name": "P41_Unique_Ring_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451168, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185739, + "Name": "P41_Unique_Ring_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451169, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185740, + "Name": "P41_Unique_Ring_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451170, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185741, + "Name": "P41_Unique_Ring_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451171, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185742, + "Name": "P41_Unique_Ring_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451172, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185743, + "Name": "P41_Unique_Ring_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451173, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185744, + "Name": "P41_Unique_Ring_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451174, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185745, + "Name": "P41_Unique_Ring_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451175, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185746, + "Name": "P41_Unique_Ring_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451176, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185747, + "Name": "P41_Unique_Ring_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451177, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 661185771, + "Name": "P41_Unique_Ring_020", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451178, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1277848375, + "Name": "P42_Unique_Flail_1H_106_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 299428, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451313, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -232423704, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1351212440, + "Name": "P67_Unique_Flail_1H_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 299428, + "ItemTypesGBID": -1363671135, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 34, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -912456880, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483790, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 1791554648, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -502059949, + "Name": "P42_Unique_Mojo_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 194991, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 31, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136814297, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1196, + "SNOParam": 102572, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 374670, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 949340468, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 31, + 0, + 0, + 31, + 31 + ], + "I38": [ + 1, + 1, + 1, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1561807773, + "Name": "P42_handXbow_norm_unique_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 395305, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363391669, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451243, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": 4, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1170028885, + "Name": "P42_Unique_Ring_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451236, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1641535042, + "Name": "P42_Unique_BarbBelt_EQ", + "GBID": 0, + "PAD": 0, + "SNOActor": 212232, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451237, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1, + 699281021, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -683225825, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1947922527, + "Name": "P61_Unique_BarbBelt_EQ", + "GBID": 0, + "PAD": 0, + "SNOActor": 212232, + "ItemTypesGBID": -479768568, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2112155408, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451237, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 810509126, + -553879927, + -1, + 699281021, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1290571216, + "Name": "P42_Crusader_FoH_Belt", + "GBID": 0, + "PAD": 0, + "SNOActor": 299381, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451238, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1403515884, + "Name": "P42_Unique_Bracer_SpikeTrap", + "GBID": 0, + "PAD": 0, + "SNOActor": 298119, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451239, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 494216508, + "Name": "P42_Unique_Fist_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 130557, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236606059, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451240, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1219744707, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -211293219, + "Name": "P61_Unique_Fist_013_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 130557, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236606059, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478474, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 629294810, + "Name": "P42_Unique_Mojo_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 194995, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451241, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 982068194, + -553879927, + -1, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1003477242, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 794475674, + "Name": "P68_Unique_Mojo_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 194995, + "ItemTypesGBID": 4041621, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -136816474, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484270, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + 493718975, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -844428817, + "Name": "P42_Unique_Wand_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 182074, + "ItemTypesGBID": 4385866, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 9, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 88665056, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451242, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -812845450, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1170028878, + "Name": "P42_Unique_Ring_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451243, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1803226677, + "Name": "P43_Unique_Belt_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193664, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 9, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 6, + "CrafterRequiredLevel": 7, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733830278, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454918, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 11, + 11, + 11, + 11 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1338741970, + "Name": "P43_Unique_Sword_2H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 198960, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803523, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454927, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1785057298, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1787962222, + "Name": "P61_Unique_Sword_2H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 198960, + "ItemTypesGBID": -1307049751, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 17, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -231803523, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454927, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1350281776, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 19, + 19, + 19, + 19, + 19, + 19 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -376816868, + "Name": "P43_Unique_Fist_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 196472, + "ItemTypesGBID": -2094596416, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1236604970, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454929, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 61, + 61, + 61, + 61, + 61, + 0 + ], + "I38": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -465580554, + "Name": "P43_Unique_Ring_021_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 212546, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 25, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967285, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454930, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 20, + 20, + 20, + 20, + 20, + 0 + ], + "I38": [ + 1, + 0, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1792521872, + "Name": "P43_Unique_Dagger_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195174, + "ItemTypesGBID": -262576534, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454932, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + 2044719016, + -553879927, + -1256761000, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 70, + 70, + 70, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -769108209, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1803082929, + "Name": "P43_Unique_Belt_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 193668, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 13, + "CrafterRequiredLevel": 14, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733829186, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454934, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 0, + 15, + 15, + 15, + 15 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -243099014, + "Name": "P43_Unique_Gloves_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 205640, + "ItemTypesGBID": -131821392, + "Flags": 16777217, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533912126, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 31, + 31, + 31, + 31, + 31 + ], + "I38": [ + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1893184120, + "Name": "P43_Unique_Quiver_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197625, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 449114, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + 1547764753, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 30, + 30, + 30, + 30, + 30, + 30 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1762168860, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1792727996, + "Name": "P65_Unique_Quiver_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 197625, + "ItemTypesGBID": 269990204, + "Flags": 139265, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539236301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 483505, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1823379498, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 30, + 30, + 30, + 30, + 30, + 30 + ], + "I38": [ + 1, + 0, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2124116805, + "Name": "P43_Unique_HandXBow_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 192467, + "ItemTypesGBID": 763102523, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6400, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 28, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -363389489, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 436472, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1616088365, + 1951651227, + -730461696, + -1, + -1 + ], + "MaxAffixLevel": [ + 30, + 30, + 30, + 30, + 30, + 30 + ], + "I38": [ + 0, + 1, + 0, + 1, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293723853, + "Name": "P43_Unique_Ring_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454939, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1293723854, + "Name": "P43_Unique_Ring_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454940, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1217849986, + "Name": "P5_Unique_Dagger_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 195174, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1303415300, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454932, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -769108209, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -738549073, + "Name": "P68_Unique_Dagger_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 195174, + "ItemTypesGBID": -199811863, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3800, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -635269581, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 454932, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -812845450, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 17, + 17, + 17, + 17, + 17, + 17 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -644328335, + "Name": "P5_Unique_Quiver_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 197627, + "ItemTypesGBID": 269990204, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539237391, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451257, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1542055954, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 0, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 745679139, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 776238275, + "Name": "P69_Unique_Quiver_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 197627, + "ItemTypesGBID": 269990204, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 6600, + "CostAlt": 5, + "IdentifyCost": 93, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1539237391, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 527, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484313, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1542055954, + -553879927, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 31, + 0, + 31, + 31, + 31, + 31 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052476, + "Name": "P5_Unique_Ring_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451258, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052477, + "Name": "P5_Unique_Ring_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451259, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052478, + "Name": "P5_Unique_Ring_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451260, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052479, + "Name": "P5_Unique_Ring_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451261, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052480, + "Name": "P5_Unique_Ring_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451262, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052481, + "Name": "P5_Unique_Ring_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451263, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052482, + "Name": "P5_Unique_Ring_009", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451264, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052506, + "Name": "P5_Unique_Ring_010", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451265, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052507, + "Name": "P5_Unique_Ring_011", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451266, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052508, + "Name": "P5_Unique_Ring_012", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451267, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052509, + "Name": "P5_Unique_Ring_013", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451268, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052510, + "Name": "P5_Unique_Ring_014", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451269, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052511, + "Name": "P5_Unique_Ring_015", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451270, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052512, + "Name": "P5_Unique_Ring_016", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451271, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052513, + "Name": "P5_Unique_Ring_017", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451272, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052514, + "Name": "P5_Unique_Ring_018", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451273, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052515, + "Name": "P5_Unique_Ring_019", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451274, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956052539, + "Name": "P5_Unique_Ring_020", + "GBID": 0, + "PAD": 0, + "SNOActor": 386025, + "ItemTypesGBID": 4214896, + "Flags": 16908305, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 451275, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1956568284, + "Name": "P6_Necro_Set_1_Helm", + "GBID": 0, + "PAD": 0, + "SNOActor": 460892, + "ItemTypesGBID": -487438254, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1113279415, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": -16219025, + "Name": "P6_Necro_Set_1_Shoulders", + "GBID": 0, + "PAD": 0, + "SNOActor": 460923, + "ItemTypesGBID": -1118573915, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1113279415, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 715115171, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": 136414829, + "Name": "P6_Necro_Set_1_Chest", + "GBID": 0, + "PAD": 0, + "SNOActor": 460919, + "ItemTypesGBID": 2146108164, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 1113279415, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": 151590076, + "Name": "P6_Necro_Set_1_Pants", + "GBID": 0, + "PAD": 0, + "SNOActor": 460918, + "ItemTypesGBID": -943720265, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1113279415, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447540 + }, + { + "Hash": 135491389, + "Name": "P6_Necro_Set_1_Boots", + "GBID": 0, + "PAD": 0, + "SNOActor": 460917, + "ItemTypesGBID": -2032851597, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1113279415, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447539 + }, + { + "Hash": 368369574, + "Name": "P6_Necro_Set_1_Gloves", + "GBID": 0, + "PAD": 0, + "SNOActor": 460920, + "ItemTypesGBID": 208688284, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1113279415, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447538 + }, + { + "Hash": 1995703677, + "Name": "P6_Necro_Set_2_Helm", + "GBID": 0, + "PAD": 0, + "SNOActor": 467601, + "ItemTypesGBID": -487438254, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1113279416, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": -2073740880, + "Name": "P6_Necro_Set_2_Shoulders", + "GBID": 0, + "PAD": 0, + "SNOActor": 467606, + "ItemTypesGBID": -1118573915, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1113279416, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 982068194, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 1427882798, + "Name": "P6_Necro_Set_2_Chest", + "GBID": 0, + "PAD": 0, + "SNOActor": 467566, + "ItemTypesGBID": 2146108164, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 1113279416, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": 1443058045, + "Name": "P6_Necro_Set_2_Pants", + "GBID": 0, + "PAD": 0, + "SNOActor": 467574, + "ItemTypesGBID": -943720265, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1113279416, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447554 + }, + { + "Hash": 1426959358, + "Name": "P6_Necro_Set_2_Boots", + "GBID": 0, + "PAD": 0, + "SNOActor": 467562, + "ItemTypesGBID": -2032851597, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1113279416, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447552 + }, + { + "Hash": 37139591, + "Name": "P6_Necro_Set_2_Gloves", + "GBID": 0, + "PAD": 0, + "SNOActor": 467570, + "ItemTypesGBID": 208688284, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1113279416, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447549 + }, + { + "Hash": 2034839070, + "Name": "P6_Necro_Set_3_Helm", + "GBID": 0, + "PAD": 0, + "SNOActor": 467602, + "ItemTypesGBID": -487438254, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1113279417, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": 163704561, + "Name": "P6_Necro_Set_3_Shoulders", + "GBID": 0, + "PAD": 0, + "SNOActor": 467607, + "ItemTypesGBID": -1118573915, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1113279417, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": -1575616529, + "Name": "P6_Necro_Set_3_Chest", + "GBID": 0, + "PAD": 0, + "SNOActor": 467567, + "ItemTypesGBID": 2146108164, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 1113279417, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -1560441282, + "Name": "P6_Necro_Set_3_Pants", + "GBID": 0, + "PAD": 0, + "SNOActor": 467575, + "ItemTypesGBID": -943720265, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1113279417, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447506 + }, + { + "Hash": -1576539969, + "Name": "P6_Necro_Set_3_Boots", + "GBID": 0, + "PAD": 0, + "SNOActor": 467563, + "ItemTypesGBID": -2032851597, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1113279417, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447503 + }, + { + "Hash": -294090392, + "Name": "P6_Necro_Set_3_Gloves", + "GBID": 0, + "PAD": 0, + "SNOActor": 467571, + "ItemTypesGBID": 208688284, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1113279417, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 444430 + }, + { + "Hash": 2073974463, + "Name": "P6_Necro_Set_4_Helm", + "GBID": 0, + "PAD": 0, + "SNOActor": 467603, + "ItemTypesGBID": -487438254, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": 1113279418, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": -1893817294, + "Name": "P6_Necro_Set_4_Shoulders", + "GBID": 0, + "PAD": 0, + "SNOActor": 467608, + "ItemTypesGBID": -1118573915, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": 1113279418, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -986766241, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -284148560, + "Name": "P6_Necro_Set_4_Chest", + "GBID": 0, + "PAD": 0, + "SNOActor": 467351, + "ItemTypesGBID": 2146108164, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": 1113279418, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -268973313, + "Name": "P6_Necro_Set_4_Pants", + "GBID": 0, + "PAD": 0, + "SNOActor": 467353, + "ItemTypesGBID": -943720265, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": 1113279418, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447535 + }, + { + "Hash": -285072000, + "Name": "P6_Necro_Set_4_Boots", + "GBID": 0, + "PAD": 0, + "SNOActor": 467350, + "ItemTypesGBID": -2032851597, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": 1113279418, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447533 + }, + { + "Hash": -625320375, + "Name": "P6_Necro_Set_4_Gloves", + "GBID": 0, + "PAD": 0, + "SNOActor": 467352, + "ItemTypesGBID": 208688284, + "Flags": 17956865, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": 1113279418, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": 447507 + }, + { + "Hash": -293638940, + "Name": "P6_Unique_Scythe1H_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467370, + "ItemTypesGBID": 151398921, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 111732411, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476050, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -293638939, + "Name": "P6_Unique_Scythe1H_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 467394, + "ItemTypesGBID": 151398921, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 7400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 111732411, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475250, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -293638938, + "Name": "P6_Unique_Scythe1H_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 467579, + "ItemTypesGBID": 151398921, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 111732411, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476586, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1345794743, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -293638937, + "Name": "P6_Unique_Scythe1H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 467580, + "ItemTypesGBID": 151398921, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 111732411, + "SNOSet": 1113279419, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1246657204, + "Name": "P6_Unique_Shield_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 454765, + "ItemTypesGBID": 332825721, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1815806857, + "SNOSet": 1113279419, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 715115171, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1114650986, + "Name": "P6_Unique_Spear_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 470273, + "ItemTypesGBID": 140519163, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 3400, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 15, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -101311666, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475254, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 1616088365, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 15, + 15, + 15, + 15, + 15, + 15 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -292453019, + "Name": "P6_Unique_Scythe2H_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467598, + "ItemTypesGBID": 151398954, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 150867804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475246, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 2044719016, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1346980662, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -292453018, + "Name": "P6_Unique_Scythe2H_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 467599, + "ItemTypesGBID": 151398954, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 150867804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475251, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1346980663, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -292453017, + "Name": "P6_Unique_Scythe2H_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 467600, + "ItemTypesGBID": 151398954, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 20, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 150867804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475253, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -292453016, + "Name": "P6_Unique_Scythe2H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 467594, + "ItemTypesGBID": 151398954, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 150867804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476587, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1346980665, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -719927680, + "Name": "P6_Unique_Phylactery_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467582, + "ItemTypesGBID": 311436835, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1502365593, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476684, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 959590513, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -719927679, + "Name": "P6_Unique_Phylactery_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 462249, + "ItemTypesGBID": 311436835, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1502365593, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476584, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -719927678, + "Name": "P6_Unique_Phylactery_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 462250, + "ItemTypesGBID": 311436835, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1502365593, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476696, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 959590515, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -719927677, + "Name": "P6_Unique_Phylactery_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 467581, + "ItemTypesGBID": 311436835, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1502365593, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476695, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 65231608, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1242725736, + "Name": "P65_Unique_Phylactery_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 467581, + "ItemTypesGBID": 311436835, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1502365593, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476695, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -163378343, + "Name": "P6_Necro_Unique_Helm_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 467604, + "ItemTypesGBID": -487438254, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476581, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1260459284, + "Name": "P6_Necro_Unique_Shoulders_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 467609, + "ItemTypesGBID": -1118573915, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476580, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -126959958, + "Name": "P6_Necro_Unique_Chest_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 467568, + "ItemTypesGBID": 2146108164, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 65, + "CrafterRequiredLevel": 65, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476585, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 50, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -234955111, + "Name": "P6_Necro_Unique_Pants_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 467576, + "ItemTypesGBID": -943720265, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476588, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1655219914, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1047115130, + "Name": "P6_Necro_Unique_Boots_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 467564, + "ItemTypesGBID": -2032851597, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475243, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 139520518, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1357677141, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1862153053, + "Name": "P6_Necro_Unique_Gloves_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 467572, + "ItemTypesGBID": 208688284, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476589, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -163378342, + "Name": "P6_Necro_Unique_Helm_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467605, + "ItemTypesGBID": -487438254, + "Flags": 269615105, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476582, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 1976308075, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1260459283, + "Name": "P6_Necro_Unique_Shoulders_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467610, + "ItemTypesGBID": -1118573915, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476578, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -986766241, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 342629798, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1809065690, + "Name": "P69_Necro_Unique_Shoulders_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467610, + "ItemTypesGBID": -1118573915, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 19, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 365490252, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484311, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -986766241, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -126959957, + "Name": "P6_Necro_Unique_Chest_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467569, + "ItemTypesGBID": 2146108164, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1700, + "EnchantAffixCostX1": 1785, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1612257707, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476579, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -234955110, + "Name": "P6_Necro_Unique_Pants_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467577, + "ItemTypesGBID": -943720265, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475249, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1440023077, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1047115131, + "Name": "P6_Necro_Unique_Boots_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467565, + "ItemTypesGBID": -2032851597, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475245, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1862153052, + "Name": "P6_Necro_Unique_Gloves_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467573, + "ItemTypesGBID": 208688284, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 16, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475248, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1909435907, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1042136445, + "Name": "P69_Necro_Unique_Gloves_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467573, + "ItemTypesGBID": 208688284, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 16, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1600, + "EnchantAffixCostX1": 1680, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1533914301, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484310, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -416971637, + "Name": "P6_Unique_Ring_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 476592, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2600, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 11, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475247, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1256761000, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 11, + 11, + 0, + 11, + 11, + 11 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -416971636, + "Name": "P6_Unique_Ring_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 476593, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475252, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 70, + 70, + 0, + 70, + 70, + 70 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -416971635, + "Name": "P6_Unique_Ring_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 476594, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10800, + "CostAlt": 5, + "IdentifyCost": 156, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475241, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 52, + 52, + 0, + 52, + 52, + 52 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -416971634, + "Name": "P6_Unique_Ring_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 476595, + "ItemTypesGBID": 4214896, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 8200, + "CostAlt": 5, + "IdentifyCost": 117, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1146967280, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475244, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 39, + 39, + 0, + 39, + 39, + 39 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": -1456001752, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1651556611, + "Name": "P6_Unique_Amulet_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 476716, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476583, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 75, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1256761000, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1651556612, + "Name": "P6_Unique_Amulet_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 476717, + "ItemTypesGBID": -365243096, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476590, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1646531715, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 46351133, + "Name": "P69_Unique_Amulet_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 476717, + "ItemTypesGBID": -365243096, + "Flags": 268566529, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484309, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1651556613, + "Name": "P6_Unique_Amulet_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 476718, + "ItemTypesGBID": -365243096, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 22, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1682228617, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476686, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 810509126, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 5, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 10 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 1019190640, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 235931106, + "Name": "P6_Unique_Belt_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 476720, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 22, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476689, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": 400756499, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1305476787, + "Name": "P61_Unique_Belt_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 476720, + "ItemTypesGBID": -948083356, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 4800, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 22, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -733831369, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478534, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1940685130, + "Name": "P61_Unique_Scythe2H_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467598, + "ItemTypesGBID": 151398954, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 150867804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475246, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 2044719016, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -348366831, + "Name": "P61_Unique_Phylactery_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467582, + "ItemTypesGBID": 311436835, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 3, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1502365593, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476684, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -348366829, + "Name": "P61_Unique_Phylactery_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 462250, + "ItemTypesGBID": 311436835, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1502365593, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 214, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 212, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476696, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1941871049, + "Name": "P61_Unique_Scythe1H_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 467579, + "ItemTypesGBID": 151398921, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 12600, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 111732411, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476586, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1940685129, + "Name": "P61_Unique_Scythe2H_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 467599, + "ItemTypesGBID": 151398954, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 150867804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475251, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -2132409157, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1125107653, + "Name": "P65_Unique_Scythe2H_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 467599, + "ItemTypesGBID": 151398954, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 1, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 150867804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475251, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 143839492, + -1461069733, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1940685127, + "Name": "P61_Unique_Scythe2H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 467594, + "ItemTypesGBID": 151398954, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 2200, + "EnchantAffixCostX1": 2310, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 150867804, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 476587, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1461069733, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 208182507, + "Name": "P61_Necro_Unique_Helm_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467605, + "ItemTypesGBID": -487438254, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 1565454583, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478508, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 1, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -858348982, + "Name": "P61_Necro_Unique_Pants_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 467576, + "ItemTypesGBID": -943720265, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 478510, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -858348981, + "Name": "P61_Necro_Unique_Pants_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467577, + "ItemTypesGBID": -943720265, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475249, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1440023077, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1170965157, + "Name": "P7_Necro_Unique_Pants_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 467577, + "ItemTypesGBID": -943720265, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1575, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -1512732136, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 485506, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1976254587, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 423721259, + "Name": "P61_Necro_Unique_Boots_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 467564, + "ItemTypesGBID": -2032851597, + "Flags": 1179649, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 2, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 1000, + "EnchantAffixCostX1": 1050, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": 2140880153, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 475243, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + 139520518, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1056639154, + "Name": "P610_Unique_Bracer_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 484595, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 484588, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1237333839, + "Name": "P7_Unique_Bracer_23", + "GBID": 0, + "PAD": 0, + "SNOActor": 485500, + "ItemTypesGBID": -1999984446, + "Flags": 131073, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 2, + "BonusMinorAffixes": 1, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 14400, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 4000, + "EnchantAffixCostX1": 4200, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 50000, + "SNOBaseItem": -875944878, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 485504, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 100, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "LegendaryAffixFamily": [ + -553879927, + -1823379498, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 1, + 1, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 4, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 5 + }, + { + "ItemsGBID": -605947593, + "Count": 15 + }, + { + "ItemsGBID": 2073430088, + "Count": 1 + }, + { + "ItemsGBID": 2087837753, + "Count": 1 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_Legendary_Other.gam b/src/GAM/Items_Legendary_Other.gam new file mode 100644 index 0000000..6ba4d47 Binary files /dev/null and b/src/GAM/Items_Legendary_Other.gam differ diff --git a/src/GAM/Items_Legendary_Other.json b/src/GAM/Items_Legendary_Other.json new file mode 100644 index 0000000..414dff8 --- /dev/null +++ b/src/GAM/Items_Legendary_Other.json @@ -0,0 +1,4720 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 1189, + "BalanceType": 2, + "I0": 690527645, + "I1": 0 + }, + "Items": [ + { + "Hash": 1006811251, + "Name": "Unique_Amulet_PvP", + "GBID": 0, + "PAD": 0, + "SNOActor": 3174, + "ItemTypesGBID": -365243096, + "Flags": 288, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 10, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1208, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1209, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1210, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1211, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 171, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -482524613, + "Name": "Unique_Ring_PvP", + "GBID": 0, + "PAD": 0, + "SNOActor": 5021, + "ItemTypesGBID": 4214896, + "Flags": 288, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 210, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 253, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 258, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 391, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 210, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 707, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1877454125, + "Name": "Unique_Amulet_PvP_4v4_60_All", + "GBID": 0, + "PAD": 0, + "SNOActor": 3174, + "ItemTypesGBID": -365243096, + "Flags": 293, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 10, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 707, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1877454397, + "Name": "Unique_Amulet_PvP_4v4_60_Att", + "GBID": 0, + "PAD": 0, + "SNOActor": 3175, + "ItemTypesGBID": -365243096, + "Flags": 293, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 10, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 707, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1826989438, + "Name": "Unique_Amulet_PvP_4v4_60_Prec", + "GBID": 0, + "PAD": 0, + "SNOActor": 3176, + "ItemTypesGBID": -365243096, + "Flags": 293, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 10, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 707, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1877457155, + "Name": "Unique_Amulet_PvP_4v4_60_Def", + "GBID": 0, + "PAD": 0, + "SNOActor": 3177, + "ItemTypesGBID": -365243096, + "Flags": 293, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 10, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 707, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 0, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1877476903, + "Name": "Unique_Amulet_PvP_4v4_60_Vit", + "GBID": 0, + "PAD": 0, + "SNOActor": 3178, + "ItemTypesGBID": -365243096, + "Flags": 293, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 10, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 707, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 13, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1156054408, + "Name": "Unique_Ring_PvP_60_All", + "GBID": 0, + "PAD": 0, + "SNOActor": 5021, + "ItemTypesGBID": 4214896, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1156054136, + "Name": "Unique_Ring_PvP_60_Att", + "GBID": 0, + "PAD": 0, + "SNOActor": 5022, + "ItemTypesGBID": 4214896, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505455657, + "Name": "Unique_Ring_PvP_60_Prec", + "GBID": 0, + "PAD": 0, + "SNOActor": 5023, + "ItemTypesGBID": 4214896, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1156051378, + "Name": "Unique_Ring_PvP_60_Def", + "GBID": 0, + "PAD": 0, + "SNOActor": 5024, + "ItemTypesGBID": 4214896, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1156031630, + "Name": "Unique_Ring_PvP_60_Vit", + "GBID": 0, + "PAD": 0, + "SNOActor": 5025, + "ItemTypesGBID": 4214896, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 180, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 393, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1499119183, + "Name": "ThorTest_Mojo", + "GBID": 0, + "PAD": 0, + "SNOActor": 220326, + "ItemTypesGBID": 4041621, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -696178209, + "Name": "ThorTest_Orb", + "GBID": 0, + "PAD": 0, + "SNOActor": 212780, + "ItemTypesGBID": 124739, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -289585576, + "Name": "ThorTest_Quiver", + "GBID": 0, + "PAD": 0, + "SNOActor": 197630, + "ItemTypesGBID": 269990204, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226750059, + "Name": "ThorTest_Shield", + "GBID": 0, + "PAD": 0, + "SNOActor": 197478, + "ItemTypesGBID": 332825721, + "Flags": 289, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 269, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 277, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 278, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 34, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_Legendary_Weapons.gam b/src/GAM/Items_Legendary_Weapons.gam new file mode 100644 index 0000000..b8c3a87 Binary files /dev/null and b/src/GAM/Items_Legendary_Weapons.gam differ diff --git a/src/GAM/Items_Legendary_Weapons.json b/src/GAM/Items_Legendary_Weapons.json new file mode 100644 index 0000000..f5ec59c --- /dev/null +++ b/src/GAM/Items_Legendary_Weapons.json @@ -0,0 +1,27358 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 19752, + "BalanceType": 2, + "I0": 1210838967, + "I1": 0 + }, + "Items": [ + { + "Hash": -996914807, + "Name": "Set_001_GiyuasFang", + "GBID": 0, + "PAD": 0, + "SNOActor": 3903, + "ItemTypesGBID": -262576534, + "Flags": 8484, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 1000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 7, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1303415296, + "SNOSet": 1490040500, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 30.0, + "WeaponDamageDelta": 70.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 258231235, + "Name": "BladeoftheAncients", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": -1307049751, + "Flags": 8485, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 25000, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 30.0, + "WeaponDamageDelta": 70.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 231, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 222, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": 171, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115389518, + "Name": "Axe_2H_PvP_70", + "GBID": 0, + "PAD": 0, + "SNOActor": 6319, + "ItemTypesGBID": 119458520, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2600.0, + "WeaponDamageDelta": 400.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115389617, + "Name": "Axe_2H_PvP_40", + "GBID": 0, + "PAD": 0, + "SNOActor": 6321, + "ItemTypesGBID": 119458520, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 5200.0, + "WeaponDamageDelta": 800.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115389716, + "Name": "Axe_2H_PvP_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 6329, + "ItemTypesGBID": 119458520, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10400.0, + "WeaponDamageDelta": 1600.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1544437698, + "Name": "Sword_1H_PvP_70", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1450.0, + "WeaponDamageDelta": 220.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1544437599, + "Name": "Sword_1H_PvP_40", + "GBID": 0, + "PAD": 0, + "SNOActor": 5523, + "ItemTypesGBID": 140782159, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2900.0, + "WeaponDamageDelta": 440.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1544437500, + "Name": "Sword_1H_PvP_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 5523, + "ItemTypesGBID": 140782159, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 5800.0, + "WeaponDamageDelta": 880.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2031580984, + "Name": "Staff_2H_PvP_70", + "GBID": 0, + "PAD": 0, + "SNOActor": 5483, + "ItemTypesGBID": 140658708, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2600.0, + "WeaponDamageDelta": 400.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2031581083, + "Name": "Staff_2H_PvP_40", + "GBID": 0, + "PAD": 0, + "SNOActor": 5483, + "ItemTypesGBID": 140658708, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 5200.0, + "WeaponDamageDelta": 800.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2031581182, + "Name": "Staff_2H_PvP_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 5483, + "ItemTypesGBID": 140658708, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10400.0, + "WeaponDamageDelta": 1600.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1559140691, + "Name": "Crossbow_PvP_70", + "GBID": 0, + "PAD": 0, + "SNOActor": 497, + "ItemTypesGBID": -1338851342, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2300.0, + "WeaponDamageDelta": 269.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1559140790, + "Name": "Crossbow_PvP_40", + "GBID": 0, + "PAD": 0, + "SNOActor": 6611, + "ItemTypesGBID": -1338851342, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4600.0, + "WeaponDamageDelta": 538.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1559140889, + "Name": "Crossbow_PvP_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 6612, + "ItemTypesGBID": -1338851342, + "Flags": 8480, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9200.0, + "WeaponDamageDelta": 1076.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 84911023, + "Name": "Sword_1H_Crafted_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5521, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 237, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1589543029, + "Name": "Staff_2H_Crafted_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5483, + "ItemTypesGBID": 140658708, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4.0, + "WeaponDamageDelta": 12.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 0, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1752263754, + "Name": "Wand_1H_Crafted_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 6421, + "ItemTypesGBID": 4385866, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 2000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 229, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1312194267, + "Name": "Debug_Sword_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1312194266, + "Name": "Debug_Sword_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": -1307049751, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -231803528, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2132764332, + "Name": "Debug_Axe_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 3245, + "ItemTypesGBID": 109694, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1661412390, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2132764331, + "Name": "Debug_Axe_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 6319, + "ItemTypesGBID": 119458520, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1700547783, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -23008384, + "Name": "Debug_Dagger_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 3903, + "ItemTypesGBID": -262576534, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1303415302, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2107118154, + "Name": "Debug_FistWeapon_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 4133, + "ItemTypesGBID": -2094596416, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 1236604968, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1049997140, + "Name": "Debug_Mace_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 4645, + "ItemTypesGBID": 4026134, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1656026178, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1049997139, + "Name": "Debug_Mace_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 4645, + "ItemTypesGBID": 89494384, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1616890785, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2034008186, + "Name": "Debug_Polearm_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 4864, + "ItemTypesGBID": -1203595600, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1337763520, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1172168322, + "Name": "Debug_Bow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 3445, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2091504072, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 302492264, + "Name": "Debug_CrossBow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 6610, + "ItemTypesGBID": -1338851342, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 181031810, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 327939025, + "Name": "Debug_Spear_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5451, + "ItemTypesGBID": 140519163, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -101312757, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1686439574, + "Name": "Debug_Staff_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5483, + "ItemTypesGBID": 140658708, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -2115691356, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 361973728, + "Name": "Debug_Wand_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 487, + "ItemTypesGBID": 4385866, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": 88665050, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -937101666, + "Name": "Debug_Constant_Mace_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 197717, + "ItemTypesGBID": 89494384, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80230106, + "Name": "Debug_Constant_Axe_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192887, + "ItemTypesGBID": 119458520, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 280797463, + "Name": "Debug_Constant_Sword_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 198960, + "ItemTypesGBID": -1307049751, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -937101699, + "Name": "Debug_Constant_Mace_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 188189, + "ItemTypesGBID": 4026134, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -80230139, + "Name": "Debug_Constant_Axe_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 189973, + "ItemTypesGBID": 109694, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 280797430, + "Name": "Debug_Constant_Sword_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 9982201, + "Name": "Debug_Constant_Dagger", + "GBID": 0, + "PAD": 0, + "SNOActor": 195655, + "ItemTypesGBID": -262576534, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1175778153, + "Name": "Debug_Constant_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 192602, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1225636682, + "Name": "Debug_Constant_HandXBow", + "GBID": 0, + "PAD": 0, + "SNOActor": 211749, + "ItemTypesGBID": 763102523, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -145234151, + "Name": "Debug_Constant_Wand", + "GBID": 0, + "PAD": 0, + "SNOActor": 210479, + "ItemTypesGBID": 4385866, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538757452, + "Name": "Debug_100DPS_Mace_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 191584, + "ItemTypesGBID": 89494384, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 124946452, + "Name": "Debug_100DPS_Axe_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 191065, + "ItemTypesGBID": 119458520, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 379769733, + "Name": "Debug_100DPS_Sword_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 190360, + "ItemTypesGBID": -1307049751, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1538757419, + "Name": "Debug_100DPS_Mace_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 188185, + "ItemTypesGBID": 4026134, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 124946419, + "Name": "Debug_100DPS_Axe_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 181484, + "ItemTypesGBID": 109694, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 379769700, + "Name": "Debug_100DPS_Sword_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 194481, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 215158759, + "Name": "Debug_100DPS_Dagger", + "GBID": 0, + "PAD": 0, + "SNOActor": 195174, + "ItemTypesGBID": -262576534, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -360807867, + "Name": "Debug_100DPS_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1324608952, + "Name": "Debug_100DPS_HandXBow", + "GBID": 0, + "PAD": 0, + "SNOActor": 211745, + "ItemTypesGBID": 763102523, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 978981511, + "Name": "Debug_100DPS_Wand", + "GBID": 0, + "PAD": 0, + "SNOActor": 193355, + "ItemTypesGBID": 4385866, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 547860753, + "Name": "Debug_Slow_Sword_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 185397, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1492700005, + "Name": "Debug_Slow_HandXBow", + "GBID": 0, + "PAD": 0, + "SNOActor": 210874, + "ItemTypesGBID": 763102523, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1774116428, + "Name": "Debug_Slow_Wand", + "GBID": 0, + "PAD": 0, + "SNOActor": 182081, + "ItemTypesGBID": 4385866, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129127418, + "Name": "Debug_Fast_Sword_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192511, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 5.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1073966670, + "Name": "Debug_Fast_HandXBow", + "GBID": 0, + "PAD": 0, + "SNOActor": 196409, + "ItemTypesGBID": 763102523, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 5.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1308313571, + "Name": "Debug_Fast_Wand", + "GBID": 0, + "PAD": 0, + "SNOActor": 182074, + "ItemTypesGBID": 4385866, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 5.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -691310722, + "Name": "Debug_Stun_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1118, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1917074638, + "Name": "Debug_Fear_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1117, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -237155499, + "Name": "Debug_Freeze_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -650019203, + "Name": "Debug_Blind_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1119, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -574477440, + "Name": "Debug_Chill_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1579748601, + "Name": "Debug_Slow_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1122, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1298808997, + "Name": "Debug_Knockback_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1124, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 521744997, + "Name": "Debug_Immobilize_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1123, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 740810007, + "Name": "Debug_Stun_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1118, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2076685259, + "Name": "Debug_Fear_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1117, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2137860306, + "Name": "Debug_Freeze_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -142598058, + "Name": "Debug_Blind_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1119, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1227116391, + "Name": "Debug_Chill_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1225138222, + "Name": "Debug_Slow_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1122, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1249022388, + "Name": "Debug_Knockback_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1124, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -729171394, + "Name": "Debug_Immobilize_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 175581, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1123, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1618316211, + "Name": "Debug_Paragon_Level_Sword", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 5, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -270938921, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1293, + "SNOParam": 485979, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1806017328, + "Name": "ThorTest_MightyWeapon_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1488678091, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1806017361, + "Name": "ThorTest_MightyWeapon_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 210678, + "ItemTypesGBID": -1488678058, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -912364654, + "Name": "ThorTest_Axe_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 189973, + "ItemTypesGBID": 109694, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -912364621, + "Name": "ThorTest_Axe_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192887, + "ItemTypesGBID": 119458520, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1667230378, + "Name": "ThorTest_Mace_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 188189, + "ItemTypesGBID": 4026134, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1667230411, + "Name": "ThorTest_Mace_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 197717, + "ItemTypesGBID": 89494384, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 324410051, + "Name": "ThorTest_Sword_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 200558, + "ItemTypesGBID": 140782159, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 324410084, + "Name": "ThorTest_Sword_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 198960, + "ItemTypesGBID": -1307049751, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1805240140, + "Name": "ThorTest_Polearm", + "GBID": 0, + "PAD": 0, + "SNOActor": 196570, + "ItemTypesGBID": -1203595600, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2075820183, + "Name": "ThorTest_Spear", + "GBID": 0, + "PAD": 0, + "SNOActor": 197095, + "ItemTypesGBID": 140519163, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2075959728, + "Name": "ThorTest_Staff", + "GBID": 0, + "PAD": 0, + "SNOActor": 195407, + "ItemTypesGBID": 140658708, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1818532442, + "Name": "ThorTest_CombatStaff", + "GBID": 0, + "PAD": 0, + "SNOActor": 212208, + "ItemTypesGBID": -1620551894, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2142263067, + "Name": "ThorTest_CeremonialDagger", + "GBID": 0, + "PAD": 0, + "SNOActor": 209246, + "ItemTypesGBID": -199811863, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -822152314, + "Name": "ThorTest_Dagger", + "GBID": 0, + "PAD": 0, + "SNOActor": 195655, + "ItemTypesGBID": -262576534, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -618617412, + "Name": "ThorTest_FistWeapon", + "GBID": 0, + "PAD": 0, + "SNOActor": 4137, + "ItemTypesGBID": -2094596416, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -696192444, + "Name": "ThorTest_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 192602, + "ItemTypesGBID": 110504, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -831519730, + "Name": "ThorTest_Crossbow", + "GBID": 0, + "PAD": 0, + "SNOActor": 211749, + "ItemTypesGBID": -1338851342, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1269249303, + "Name": "ThorTest_HandXBow", + "GBID": 0, + "PAD": 0, + "SNOActor": 211749, + "ItemTypesGBID": 763102523, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1498774938, + "Name": "ThorTest_Wand", + "GBID": 0, + "PAD": 0, + "SNOActor": 210479, + "ItemTypesGBID": 4385866, + "Flags": 8481, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 190036, + "SNOComponentTreasureClassRare": 190036, + "SNOComponentTreasureClassLegend": 190036, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 100.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_Other.gam b/src/GAM/Items_Other.gam new file mode 100644 index 0000000..a162b31 Binary files /dev/null and b/src/GAM/Items_Other.gam differ diff --git a/src/GAM/Items_Other.json b/src/GAM/Items_Other.json new file mode 100644 index 0000000..ea3f8e3 --- /dev/null +++ b/src/GAM/Items_Other.json @@ -0,0 +1,456598 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 19753, + "BalanceType": 2, + "I0": -640762150, + "I1": 0 + }, + "Items": [ + { + "Hash": 1493982836, + "Name": "HealthPotionMinor", + "GBID": 0, + "PAD": 0, + "SNOActor": 4440, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 20, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2013097981, + "Name": "HealthPotionLesser", + "GBID": 0, + "PAD": 0, + "SNOActor": 4439, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 110, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 6, + "CrafterRequiredLevel": 6, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 616189903, + "Name": "HealthPotion", + "GBID": 0, + "PAD": 0, + "SNOActor": 4441, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 11, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 336877753, + "Name": "HealthPotionGreater", + "GBID": 0, + "PAD": 0, + "SNOActor": 4438, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 210, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 16, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1493690984, + "Name": "HealthPotionMajor", + "GBID": 0, + "PAD": 0, + "SNOActor": 4436, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 260, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 21, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1501531454, + "Name": "HealthPotionSuper", + "GBID": 0, + "PAD": 0, + "SNOActor": 4442, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 310, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 26, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1856516233, + "Name": "HealthPotionHeroic", + "GBID": 0, + "PAD": 0, + "SNOActor": 226395, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 410, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 37, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1731302989, + "Name": "HealthPotionResplendent", + "GBID": 0, + "PAD": 0, + "SNOActor": 226396, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 510, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1500343472, + "Name": "HealthPotionRunic", + "GBID": 0, + "PAD": 0, + "SNOActor": 226398, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 560, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2075975869, + "Name": "HealthPotionMythic", + "GBID": 0, + "PAD": 0, + "SNOActor": 226397, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 610, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2013241343, + "Name": "HealthPotionSacred", + "GBID": 0, + "PAD": 0, + "SNOActor": 325172, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 850, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -640118078, + "Name": "HealthPotionConsole", + "GBID": 0, + "PAD": 0, + "SNOActor": 304319, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -840693637, + "Name": "HealthPotionBottomless", + "GBID": 0, + "PAD": 0, + "SNOActor": 433305, + "ItemTypesGBID": -1916071921, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 120, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1179483549, + "Name": "TownPortalStone", + "GBID": 0, + "PAD": 0, + "SNOActor": 5656, + "ItemTypesGBID": -1380314094, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 4194304, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -913082671, + "Name": "StoneOfRecall", + "GBID": 0, + "PAD": 0, + "SNOActor": 190617, + "ItemTypesGBID": -2007738575, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225904, + "Name": "HealthGlobe1", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225905, + "Name": "HealthGlobe2", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225906, + "Name": "HealthGlobe3", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225907, + "Name": "HealthGlobe4", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225908, + "Name": "HealthGlobe5", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225909, + "Name": "HealthGlobe6", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225910, + "Name": "HealthGlobe7", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225911, + "Name": "HealthGlobe8", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 260225912, + "Name": "HealthGlobe9", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479712, + "Name": "HealthGlobe10", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479707, + "Name": "HealthGlobe15", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479679, + "Name": "HealthGlobe20", + "GBID": 0, + "PAD": 0, + "SNOActor": 4267, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479674, + "Name": "HealthGlobe25", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479646, + "Name": "HealthGlobe30", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479641, + "Name": "HealthGlobe35", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479613, + "Name": "HealthGlobe40", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479608, + "Name": "HealthGlobe45", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479580, + "Name": "HealthGlobe50", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479575, + "Name": "HealthGlobe55", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479547, + "Name": "HealthGlobe60", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479542, + "Name": "HealthGlobe65", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479514, + "Name": "HealthGlobe70", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479509, + "Name": "HealthGlobe75", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479481, + "Name": "HealthGlobe80", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479476, + "Name": "HealthGlobe85", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479448, + "Name": "HealthGlobe90", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2479443, + "Name": "HealthGlobe95", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -81830448, + "Name": "HealthGlobe100", + "GBID": 0, + "PAD": 0, + "SNOActor": 85798, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 231583857, + "Name": "CupCake5", + "GBID": 0, + "PAD": 0, + "SNOActor": 209093, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947667395, + "Name": "CupCake10", + "GBID": 0, + "PAD": 0, + "SNOActor": 209093, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947667390, + "Name": "CupCake15", + "GBID": 0, + "PAD": 0, + "SNOActor": 209093, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947667362, + "Name": "CupCake20", + "GBID": 0, + "PAD": 0, + "SNOActor": 209093, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947667357, + "Name": "CupCake25", + "GBID": 0, + "PAD": 0, + "SNOActor": 209120, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947667329, + "Name": "CupCake30", + "GBID": 0, + "PAD": 0, + "SNOActor": 209120, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947667324, + "Name": "CupCake35", + "GBID": 0, + "PAD": 0, + "SNOActor": 209120, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -947667296, + "Name": "CupCake40", + "GBID": 0, + "PAD": 0, + "SNOActor": 209120, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -905423987, + "Name": "Steak5", + "GBID": 0, + "PAD": 0, + "SNOActor": 375124, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185779417, + "Name": "Steak10", + "GBID": 0, + "PAD": 0, + "SNOActor": 375124, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185779422, + "Name": "Steak15", + "GBID": 0, + "PAD": 0, + "SNOActor": 375124, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185779450, + "Name": "Steak20", + "GBID": 0, + "PAD": 0, + "SNOActor": 375124, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185779455, + "Name": "Steak25", + "GBID": 0, + "PAD": 0, + "SNOActor": 375125, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185779483, + "Name": "Steak30", + "GBID": 0, + "PAD": 0, + "SNOActor": 375125, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185779488, + "Name": "Steak35", + "GBID": 0, + "PAD": 0, + "SNOActor": 375125, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 185779516, + "Name": "Steak40", + "GBID": 0, + "PAD": 0, + "SNOActor": 375125, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1051791155, + "Name": "ArcaneGlobe", + "GBID": 0, + "PAD": 0, + "SNOActor": 163499, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 786507367, + "Name": "PowerUpStealth", + "GBID": 0, + "PAD": 0, + "SNOActor": 55616, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 729, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 728, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 369784027, + "Name": "PowerUpAttackSpeed", + "GBID": 0, + "PAD": 0, + "SNOActor": 54582, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 729, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 203, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 728, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -254835718, + "Name": "PowerUpCooldownReset", + "GBID": 0, + "PAD": 0, + "SNOActor": 54647, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 24092755, + "Name": "PowerUpInvulnerability", + "GBID": 0, + "PAD": 0, + "SNOActor": 55609, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 729, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 728, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1106514289, + "Name": "PowerUpDamage", + "GBID": 0, + "PAD": 0, + "SNOActor": 203080, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -775692945, + "Name": "PvP_HealingDude", + "GBID": 0, + "PAD": 0, + "SNOActor": 222823, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1965684316, + "Name": "Ring_promo", + "GBID": 0, + "PAD": 0, + "SNOActor": 316852, + "ItemTypesGBID": 4214896, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 7, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 160, + "CostAlt": 5, + "IdentifyCost": 7, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302064, + "Name": "Ring_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 5021, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 7, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 160, + "CostAlt": 5, + "IdentifyCost": 7, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 4, + "CrafterRequiredLevel": 4, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302063, + "Name": "Ring_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 5022, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 9, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 180, + "CostAlt": 5, + "IdentifyCost": 9, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 6, + "CrafterRequiredLevel": 6, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302062, + "Name": "Ring_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 5023, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 11, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 8, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302061, + "Name": "Ring_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 5024, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 14, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 11, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302060, + "Name": "Ring_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 5025, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 250, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 13, + "CrafterRequiredLevel": 13, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302059, + "Name": "Ring_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 5026, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 280, + "CostAlt": 5, + "IdentifyCost": 19, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 16, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302058, + "Name": "Ring_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 5027, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 21, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302057, + "Name": "Ring_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 5028, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 320, + "CostAlt": 5, + "IdentifyCost": 23, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 20, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302056, + "Name": "Ring_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 5029, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 350, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302032, + "Name": "Ring_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 5030, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 370, + "CostAlt": 5, + "IdentifyCost": 28, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302031, + "Name": "Ring_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 5031, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 400, + "CostAlt": 5, + "IdentifyCost": 31, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 29, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302030, + "Name": "Ring_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 414, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 420, + "CostAlt": 5, + "IdentifyCost": 33, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 31, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302029, + "Name": "Ring_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 5032, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 440, + "CostAlt": 5, + "IdentifyCost": 35, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 33, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302028, + "Name": "Ring_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 5033, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 470, + "CostAlt": 5, + "IdentifyCost": 38, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302027, + "Name": "Ring_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 5034, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 500, + "CostAlt": 5, + "IdentifyCost": 41, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302026, + "Name": "Ring_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 5035, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 44, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 530, + "CostAlt": 5, + "IdentifyCost": 44, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302025, + "Name": "Ring_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 5036, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 560, + "CostAlt": 5, + "IdentifyCost": 47, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302024, + "Name": "Ring_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 5037, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525302023, + "Name": "Ring_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 5038, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 630, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525301999, + "Name": "Ring_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 5039, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 660, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525301998, + "Name": "Ring_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 5040, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 690, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525301997, + "Name": "Ring_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 5041, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 720, + "CostAlt": 5, + "IdentifyCost": 61, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525301996, + "Name": "Ring_23", + "GBID": 0, + "PAD": 0, + "SNOActor": 5042, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 750, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525301995, + "Name": "Ring_24", + "GBID": 0, + "PAD": 0, + "SNOActor": 5043, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 780, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525301994, + "Name": "Ring_25", + "GBID": 0, + "PAD": 0, + "SNOActor": 5044, + "ItemTypesGBID": 4214896, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 780, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1312, + "EnchantAffixCostX1": 1312, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213654, + "SNORareNameSuffixStringList": 213675, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313815, + "Name": "Amulet01", + "GBID": 0, + "PAD": 0, + "SNOActor": 3174, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 190, + "CostAlt": 5, + "IdentifyCost": 10, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 7, + "CrafterRequiredLevel": 7, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313814, + "Name": "Amulet02", + "GBID": 0, + "PAD": 0, + "SNOActor": 3175, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 14, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 11, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313813, + "Name": "Amulet03", + "GBID": 0, + "PAD": 0, + "SNOActor": 3176, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 270, + "CostAlt": 5, + "IdentifyCost": 18, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 15, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313812, + "Name": "Amulet04", + "GBID": 0, + "PAD": 0, + "SNOActor": 3177, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 310, + "CostAlt": 5, + "IdentifyCost": 22, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 19, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313811, + "Name": "Amulet05", + "GBID": 0, + "PAD": 0, + "SNOActor": 3178, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 350, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313810, + "Name": "Amulet06", + "GBID": 0, + "PAD": 0, + "SNOActor": 3179, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 390, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313809, + "Name": "Amulet07", + "GBID": 0, + "PAD": 0, + "SNOActor": 3180, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 440, + "CostAlt": 5, + "IdentifyCost": 35, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 33, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313808, + "Name": "Amulet08", + "GBID": 0, + "PAD": 0, + "SNOActor": 3181, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 490, + "CostAlt": 5, + "IdentifyCost": 40, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 38, + "CrafterRequiredLevel": 38, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313807, + "Name": "Amulet09", + "GBID": 0, + "PAD": 0, + "SNOActor": 3182, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 540, + "CostAlt": 5, + "IdentifyCost": 45, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 43, + "CrafterRequiredLevel": 43, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313783, + "Name": "Amulet10", + "GBID": 0, + "PAD": 0, + "SNOActor": 3183, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 590, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 48, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313782, + "Name": "Amulet11", + "GBID": 0, + "PAD": 0, + "SNOActor": 3184, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 640, + "CostAlt": 5, + "IdentifyCost": 55, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313781, + "Name": "Amulet12", + "GBID": 0, + "PAD": 0, + "SNOActor": 3185, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 690, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313780, + "Name": "Amulet13", + "GBID": 0, + "PAD": 0, + "SNOActor": 3186, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 740, + "CostAlt": 5, + "IdentifyCost": 61, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313779, + "Name": "Amulet14", + "GBID": 0, + "PAD": 0, + "SNOActor": 3187, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 790, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313778, + "Name": "Amulet15", + "GBID": 0, + "PAD": 0, + "SNOActor": 317, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 840, + "CostAlt": 5, + "IdentifyCost": 63, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313777, + "Name": "Amulet16", + "GBID": 0, + "PAD": 0, + "SNOActor": 325061, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 890, + "CostAlt": 5, + "IdentifyCost": 64, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -603313776, + "Name": "Amulet17", + "GBID": 0, + "PAD": 0, + "SNOActor": 325062, + "ItemTypesGBID": -365243096, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 890, + "CostAlt": 5, + "IdentifyCost": 70, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 350, + "DurabilityVariance": 200, + "EnchantAffixCost": 1500, + "EnchantAffixCostX1": 1500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213643, + "SNORareNameSuffixStringList": 213664, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105512741, + "Name": "Templar_Special_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 190628, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 21, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 762443814, + "Name": "Templar_Special_001a", + "GBID": 0, + "PAD": 0, + "SNOActor": 190628, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 21, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105512742, + "Name": "Templar_Special_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 190629, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 390, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105513830, + "Name": "Templar_Special_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 190628, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 430, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 32, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105513831, + "Name": "Templar_Special_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 190629, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 470, + "CostAlt": 5, + "IdentifyCost": 38, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105513832, + "Name": "Templar_Special_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 190630, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 520, + "CostAlt": 5, + "IdentifyCost": 43, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105513833, + "Name": "Templar_Special_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 190631, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 570, + "CostAlt": 5, + "IdentifyCost": 48, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105514919, + "Name": "Templar_Special_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 190628, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105514920, + "Name": "Templar_Special_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 190629, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 630, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105514921, + "Name": "Templar_Special_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 190630, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 660, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105514922, + "Name": "Templar_Special_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 190631, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 690, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105514923, + "Name": "Templar_Special_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 190628, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 720, + "CostAlt": 5, + "IdentifyCost": 61, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 65, + "CrafterRequiredLevel": 65, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2105514924, + "Name": "Templar_Special_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 190629, + "ItemTypesGBID": 129668150, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 750, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622199007, + "Name": "Scoundrel_Special_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 190638, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 21, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -942269152, + "Name": "Scoundrel_Special_001a", + "GBID": 0, + "PAD": 0, + "SNOActor": 190638, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 21, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622199008, + "Name": "Scoundrel_Special_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 190639, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 390, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622200096, + "Name": "Scoundrel_Special_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 190638, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 430, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 32, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622200097, + "Name": "Scoundrel_Special_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 190639, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 470, + "CostAlt": 5, + "IdentifyCost": 38, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622200098, + "Name": "Scoundrel_Special_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 190640, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 520, + "CostAlt": 5, + "IdentifyCost": 43, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622200099, + "Name": "Scoundrel_Special_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 190641, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 570, + "CostAlt": 5, + "IdentifyCost": 48, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622201185, + "Name": "Scoundrel_Special_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 190638, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622201186, + "Name": "Scoundrel_Special_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 190639, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 630, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622201187, + "Name": "Scoundrel_Special_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 190640, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 660, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622201188, + "Name": "Scoundrel_Special_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 190641, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 690, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622201189, + "Name": "Scoundrel_Special_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 190638, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 720, + "CostAlt": 5, + "IdentifyCost": 61, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 65, + "CrafterRequiredLevel": 65, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622201190, + "Name": "Scoundrel_Special_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 190639, + "ItemTypesGBID": -953512528, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 750, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065177198, + "Name": "Enchantress_Special_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 190632, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 21, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -568629105, + "Name": "Enchantress_Special_001a", + "GBID": 0, + "PAD": 0, + "SNOActor": 190632, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 300, + "CostAlt": 5, + "IdentifyCost": 21, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065177199, + "Name": "Enchantress_Special_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 190635, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 390, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065178287, + "Name": "Enchantress_Special_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 190632, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 430, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 32, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065178288, + "Name": "Enchantress_Special_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 190635, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 470, + "CostAlt": 5, + "IdentifyCost": 38, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065178289, + "Name": "Enchantress_Special_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 190636, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 520, + "CostAlt": 5, + "IdentifyCost": 43, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065178290, + "Name": "Enchantress_Special_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 190637, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 570, + "CostAlt": 5, + "IdentifyCost": 48, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065179376, + "Name": "Enchantress_Special_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 190632, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 600, + "CostAlt": 5, + "IdentifyCost": 51, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065179377, + "Name": "Enchantress_Special_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 190635, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 630, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065179378, + "Name": "Enchantress_Special_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 190636, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 660, + "CostAlt": 5, + "IdentifyCost": 57, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065179379, + "Name": "Enchantress_Special_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 190637, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 690, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065179380, + "Name": "Enchantress_Special_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 190632, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 720, + "CostAlt": 5, + "IdentifyCost": 61, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 65, + "CrafterRequiredLevel": 65, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2065179381, + "Name": "Enchantress_Special_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 190635, + "ItemTypesGBID": -464307745, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 750, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 187, + "EnchantAffixCostX1": 187, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 225331, + "SNORareNameSuffixStringList": 225332, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 88310359, + "Name": "Gold1", + "GBID": 0, + "PAD": 0, + "SNOActor": 376, + "ItemTypesGBID": 3826054, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 88310360, + "Name": "Gold2", + "GBID": 0, + "PAD": 0, + "SNOActor": 209200, + "ItemTypesGBID": 3826054, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 88310361, + "Name": "Gold3", + "GBID": 0, + "PAD": 0, + "SNOActor": 4313, + "ItemTypesGBID": 3826054, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 88310362, + "Name": "Gold4", + "GBID": 0, + "PAD": 0, + "SNOActor": 4312, + "ItemTypesGBID": 3826054, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 88310363, + "Name": "Gold5", + "GBID": 0, + "PAD": 0, + "SNOActor": 4311, + "ItemTypesGBID": 3826054, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497624536, + "Name": "Junk_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 59742, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497624537, + "Name": "Junk_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 59742, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 120, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497624538, + "Name": "Junk_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 59742, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497624539, + "Name": "Junk_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 59742, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 7, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497624540, + "Name": "Junk_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 59742, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 9, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 240, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1497624541, + "Name": "Junk_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 59742, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 280, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161015, + "Name": "x1_Amethyst_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 437409, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161016, + "Name": "x1_Amethyst_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 437410, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161017, + "Name": "x1_Amethyst_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 437411, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 14000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161018, + "Name": "x1_Amethyst_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 437412, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 28000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161019, + "Name": "x1_Amethyst_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 437413, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 84000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161020, + "Name": "x1_Amethyst_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 437414, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 252000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161021, + "Name": "x1_Amethyst_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 437415, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 756000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161022, + "Name": "x1_Amethyst_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 437416, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2268000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161023, + "Name": "x1_Amethyst_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 437417, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6804000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 568161047, + "Name": "x1_Amethyst_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 437418, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 20412000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321474, + "Name": "x1_Emerald_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 437443, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321475, + "Name": "x1_Emerald_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 437444, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321476, + "Name": "x1_Emerald_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 437445, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 14000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321477, + "Name": "x1_Emerald_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 437446, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 28000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321478, + "Name": "x1_Emerald_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 437447, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 84000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321479, + "Name": "x1_Emerald_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 437448, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 252000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321480, + "Name": "x1_Emerald_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 437449, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 756000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321481, + "Name": "x1_Emerald_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 437450, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2268000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321482, + "Name": "x1_Emerald_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 437451, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6804000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 669321506, + "Name": "x1_Emerald_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 437452, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 20412000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078710, + "Name": "x1_Ruby_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 437453, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078709, + "Name": "x1_Ruby_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 437454, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078708, + "Name": "x1_Ruby_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 437455, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 14000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078707, + "Name": "x1_Ruby_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 437457, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 28000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078706, + "Name": "x1_Ruby_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 437458, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 84000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078705, + "Name": "x1_Ruby_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 437459, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 252000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078704, + "Name": "x1_Ruby_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 437460, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 756000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078703, + "Name": "x1_Ruby_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 437461, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2268000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078702, + "Name": "x1_Ruby_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 437462, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6804000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1653078678, + "Name": "x1_Ruby_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 437463, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 20412000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099126, + "Name": "x1_Topaz_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 437464, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099127, + "Name": "x1_Topaz_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 437465, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099128, + "Name": "x1_Topaz_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 437466, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 14000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099129, + "Name": "x1_Topaz_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 437467, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 28000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099130, + "Name": "x1_Topaz_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 437468, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 84000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099131, + "Name": "x1_Topaz_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 437469, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 252000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099132, + "Name": "x1_Topaz_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 437470, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 756000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099133, + "Name": "x1_Topaz_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 437471, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2268000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099134, + "Name": "x1_Topaz_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 437472, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6804000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1982099158, + "Name": "x1_Topaz_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 437473, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 20412000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019620, + "Name": "x1_Diamond_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 437474, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019621, + "Name": "x1_Diamond_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 437476, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019622, + "Name": "x1_Diamond_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 437477, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 14000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019623, + "Name": "x1_Diamond_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 437478, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 28000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019624, + "Name": "x1_Diamond_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 437479, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 84000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019625, + "Name": "x1_Diamond_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 437481, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 252000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019626, + "Name": "x1_Diamond_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 437482, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 756000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019627, + "Name": "x1_Diamond_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 437483, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2268000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019628, + "Name": "x1_Diamond_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 437484, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6804000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087019652, + "Name": "x1_Diamond_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 437485, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 20412000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323023, + "Name": "Amethyst_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 56860, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 2000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323024, + "Name": "Amethyst_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 56861, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 302, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 3000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323025, + "Name": "Amethyst_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 56862, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 420, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323026, + "Name": "Amethyst_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 56863, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 528, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323027, + "Name": "Amethyst_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 56864, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 648, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 6500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323028, + "Name": "Amethyst_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 56865, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 780, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 7500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323029, + "Name": "Amethyst_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 56866, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1140, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323030, + "Name": "Amethyst_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 56867, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1560, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323031, + "Name": "Amethyst_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 56868, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2195, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 20000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323055, + "Name": "Amethyst_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 56869, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2850, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 30000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323056, + "Name": "Amethyst_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 56870, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3525, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323057, + "Name": "Amethyst_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 56871, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 64, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 4540, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 40000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323058, + "Name": "Amethyst_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 56872, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 5585, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 45000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323059, + "Name": "Amethyst_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 56873, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323060, + "Name": "Amethyst_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 283116, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6760, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323061, + "Name": "Amethyst_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361564, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6506, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323062, + "Name": "Amethyst_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 361565, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7005, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323063, + "Name": "Amethyst_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 361566, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7504, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 4323064, + "Name": "Amethyst_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 361567, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 8003, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 1, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934426, + "Name": "Emerald_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 56888, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 2000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934427, + "Name": "Emerald_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 56889, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 302, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 3000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934428, + "Name": "Emerald_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 56890, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 420, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934429, + "Name": "Emerald_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 56891, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 528, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934430, + "Name": "Emerald_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 56892, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 648, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 6500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934431, + "Name": "Emerald_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 56893, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 780, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 7500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934432, + "Name": "Emerald_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 56894, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1140, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934433, + "Name": "Emerald_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 56895, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1560, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934434, + "Name": "Emerald_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 56896, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2195, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 20000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934458, + "Name": "Emerald_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 56897, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2850, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 30000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934459, + "Name": "Emerald_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 56898, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3525, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934460, + "Name": "Emerald_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 56899, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 64, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 4540, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 40000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934461, + "Name": "Emerald_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 56900, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 5585, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 45000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934462, + "Name": "Emerald_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 56901, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934463, + "Name": "Emerald_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 283117, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6760, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934464, + "Name": "Emerald_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361492, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6506, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934465, + "Name": "Emerald_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 361493, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7005, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934466, + "Name": "Emerald_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 361494, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7504, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 391934467, + "Name": "Emerald_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 361495, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 8003, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 2, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261534, + "Name": "Ruby_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 56846, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 2000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261533, + "Name": "Ruby_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 56847, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 302, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 3000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261532, + "Name": "Ruby_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 56848, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 420, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261531, + "Name": "Ruby_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 56849, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 528, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261530, + "Name": "Ruby_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 56850, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 648, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 6500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261529, + "Name": "Ruby_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 56851, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 780, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 7500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261528, + "Name": "Ruby_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 56852, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1140, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261527, + "Name": "Ruby_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 56853, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1560, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261526, + "Name": "Ruby_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 56854, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2195, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 20000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261502, + "Name": "Ruby_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 56855, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2850, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 30000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261501, + "Name": "Ruby_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 56856, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3525, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261500, + "Name": "Ruby_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 56857, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 64, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 4540, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 40000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261499, + "Name": "Ruby_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 56858, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 5585, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 45000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261498, + "Name": "Ruby_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 56859, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261497, + "Name": "Ruby_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 283118, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6760, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261496, + "Name": "Ruby_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361568, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6506, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261495, + "Name": "Ruby_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 361569, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7005, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261494, + "Name": "Ruby_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 361570, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7504, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1069261493, + "Name": "Ruby_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 361571, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 8003, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 3, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770546, + "Name": "Topaz_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 56916, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 2000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770545, + "Name": "Topaz_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 56917, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 302, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 3000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770544, + "Name": "Topaz_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 56918, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 420, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770543, + "Name": "Topaz_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 56919, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 528, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770542, + "Name": "Topaz_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 56920, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 648, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 6500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770541, + "Name": "Topaz_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 56921, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 780, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 7500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770540, + "Name": "Topaz_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 56922, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1140, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770539, + "Name": "Topaz_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 56923, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1560, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770538, + "Name": "Topaz_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 56924, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2195, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 20000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770514, + "Name": "Topaz_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 56925, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2850, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 30000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770513, + "Name": "Topaz_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 56926, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3525, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770512, + "Name": "Topaz_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 56927, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 64, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 4540, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 40000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770511, + "Name": "Topaz_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 56928, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 5585, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 45000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770510, + "Name": "Topaz_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 56929, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770509, + "Name": "Topaz_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 283119, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6760, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770508, + "Name": "Topaz_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361572, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6506, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770507, + "Name": "Topaz_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 361573, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7005, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770506, + "Name": "Topaz_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 361574, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7504, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -226770505, + "Name": "Topaz_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 361575, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 8003, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 4, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632572, + "Name": "Diamond_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 56874, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 2000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632573, + "Name": "Diamond_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 56875, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 302, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 3000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632574, + "Name": "Diamond_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 56876, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 420, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 4000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632575, + "Name": "Diamond_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 56877, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 528, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 5000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632576, + "Name": "Diamond_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 56878, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 648, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 6500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632577, + "Name": "Diamond_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 56879, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 780, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 7500, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632578, + "Name": "Diamond_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 56880, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1140, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 10000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632579, + "Name": "Diamond_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 56881, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1560, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 15000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632580, + "Name": "Diamond_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 56882, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2195, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 20000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632604, + "Name": "Diamond_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 56883, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 2850, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 30000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632605, + "Name": "Diamond_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 56884, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 3525, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 35000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632606, + "Name": "Diamond_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 56885, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 64, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 4540, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 40000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632607, + "Name": "Diamond_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 56886, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 5585, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 45000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632608, + "Name": "Diamond_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 56887, + "ItemTypesGBID": 115609, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 66, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 50000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632609, + "Name": "Diamond_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 361559, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6760, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 75000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632610, + "Name": "Diamond_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361560, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 67, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 6506, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 100000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632611, + "Name": "Diamond_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 361561, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 68, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7005, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 125000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632612, + "Name": "Diamond_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 361562, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 69, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 7504, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 150000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 809632613, + "Name": "Diamond_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 361563, + "ItemTypesGBID": 115609, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 8003, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 175000, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 726, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 5, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 2, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -746266778, + "Name": "PowerPotion", + "GBID": 0, + "PAD": 0, + "SNOActor": 156557, + "ItemTypesGBID": -910124122, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5, + "Cost": 160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 729, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 728, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1588378606, + "Name": "ScrollDetection", + "GBID": 0, + "PAD": 0, + "SNOActor": 5252, + "ItemTypesGBID": 327230447, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5, + "Cost": 160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 729, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 728, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1371245083, + "Name": "TalismanUnlock", + "GBID": 0, + "PAD": 0, + "SNOActor": 168215, + "ItemTypesGBID": 1626390053, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -717465341, + "Name": "StoneOfWealth", + "GBID": 0, + "PAD": 0, + "SNOActor": 168216, + "ItemTypesGBID": -1812121245, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529406, + "Name": "Dye_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 54505, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 360, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529372, + "Name": "Dye_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 148300, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 360, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529404, + "Name": "Dye_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 148288, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 360, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529403, + "Name": "Dye_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 148289, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 360, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529398, + "Name": "Dye_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 148296, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1020, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529401, + "Name": "Dye_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 148291, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1020, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529367, + "Name": "Dye_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 148306, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1020, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529402, + "Name": "Dye_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 148290, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1020, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529399, + "Name": "Dye_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 148293, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1020, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529374, + "Name": "Dye_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 148298, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 2160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529369, + "Name": "Dye_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 148304, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 2160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529373, + "Name": "Dye_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 148299, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 2160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529371, + "Name": "Dye_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 148301, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 2160, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529366, + "Name": "Dye_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 148307, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 5040, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529365, + "Name": "Dye_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 148308, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 5040, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529341, + "Name": "Dye_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 148309, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 5040, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529370, + "Name": "Dye_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 148303, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 5040, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1486529368, + "Name": "Dye_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 148305, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 5040, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 223625768, + "Name": "Dye_Vanishing", + "GBID": 0, + "PAD": 0, + "SNOActor": 148310, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 360, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1831264127, + "Name": "Dye_Remover", + "GBID": 0, + "PAD": 0, + "SNOActor": 148311, + "ItemTypesGBID": 112994, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -580679447, + "Name": "Dye_CE_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 212182, + "ItemTypesGBID": 112994, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -580679446, + "Name": "Dye_CE_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 212183, + "ItemTypesGBID": 112994, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 408, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1283279511, + "Name": "AngelWings_Red", + "GBID": 0, + "PAD": 0, + "SNOActor": 317018, + "ItemTypesGBID": 1582842526, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 686014105, + "Name": "Wings_Mercy_Console", + "GBID": 0, + "PAD": 0, + "SNOActor": 444885, + "ItemTypesGBID": 1582842526, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 820904068, + "Name": "WoDFlag", + "GBID": 0, + "PAD": 0, + "SNOActor": 375411, + "ItemTypesGBID": 1582842526, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 600882390, + "Name": "AngelWings_Blue", + "GBID": 0, + "PAD": 0, + "SNOActor": 210787, + "ItemTypesGBID": 1582842526, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1558843100, + "Name": "x1_AngelWings_Imperius", + "GBID": 0, + "PAD": 0, + "SNOActor": 378342, + "ItemTypesGBID": 1582842526, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 234604614, + "Name": "BugWings", + "GBID": 0, + "PAD": 0, + "SNOActor": 255315, + "ItemTypesGBID": 1582842526, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -758454790, + "Name": "X1_SpectralHound_Skull_promo_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 370285, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1957183816, + "Name": "P5_Cosmetic_Pet_gluttony_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451008, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2093357235, + "Name": "P5_Cosmetic_Pet_babysiege_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451010, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 584358837, + "Name": "P5_Cosmetic_Pet_fallenHound_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 451014, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1567133735, + "Name": "P5_Cosmetic_Pet_ghost_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451016, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 600203953, + "Name": "P5_Cosmetic_Pet_goatman_melee_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 451018, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -463270508, + "Name": "P5_Cosmetic_Pet_hoodednightmare_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451020, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 780480881, + "Name": "P5_Cosmetic_Pet_mimic_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451022, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1763080546, + "Name": "P5_Cosmetic_Pet_nightmare_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 451024, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 178988769, + "Name": "P5_Cosmetic_Pet_FloatingSkull_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451026, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 178988770, + "Name": "P5_Cosmetic_Pet_FloatingSkull_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 451032, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -260080183, + "Name": "P5_Cosmetic_Pet_spider_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451037, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 951272411, + "Name": "P5_Cosmetic_Pet_squire", + "GBID": 0, + "PAD": 0, + "SNOActor": 451041, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 660820815, + "Name": "P5_Cosmetic_Pet_succubus_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451043, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1387230233, + "Name": "P5_Cosmetic_Pet_teddyBear_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 451045, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 783287459, + "Name": "P5_Cosmetic_Pet_VoodooDoll_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451048, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 140259862, + "Name": "P5_Cosmetic_Pet_crawlingHand_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 451050, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1523346676, + "Name": "P5_Cosmetic_Pet_cowking_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451052, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2015095105, + "Name": "P5_Cosmetic_Pet_bladedsoul_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451054, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 15258685, + "Name": "P5_Cosmetic_Pet_yeti_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451056, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1663345352, + "Name": "P5_Cosmetic_Pet_zombie_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451058, + "ItemTypesGBID": -2116645237, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645629, + "Name": "Crafting_Tier_01B", + "GBID": 0, + "PAD": 0, + "SNOActor": 189847, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 340, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 1, + "CraftingQuality": 2, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645628, + "Name": "Crafting_Tier_01C", + "GBID": 0, + "PAD": 0, + "SNOActor": 189848, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 1, + "CraftingQuality": 3, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645596, + "Name": "Crafting_Tier_02B", + "GBID": 0, + "PAD": 0, + "SNOActor": 189853, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 740, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 2, + "CraftingQuality": 2, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645595, + "Name": "Crafting_Tier_02C", + "GBID": 0, + "PAD": 0, + "SNOActor": 189854, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 860, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 2, + "CraftingQuality": 3, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645563, + "Name": "Crafting_Tier_03B", + "GBID": 0, + "PAD": 0, + "SNOActor": 189857, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 3, + "CraftingQuality": 2, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645562, + "Name": "Crafting_Tier_03C", + "GBID": 0, + "PAD": 0, + "SNOActor": 189858, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1140, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 3, + "CraftingQuality": 3, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645531, + "Name": "Crafting_Tier_04A", + "GBID": 0, + "PAD": 0, + "SNOActor": 189860, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1140, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645530, + "Name": "Crafting_Tier_04B", + "GBID": 0, + "PAD": 0, + "SNOActor": 189861, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1280, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 4, + "CraftingQuality": 2, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645529, + "Name": "Crafting_Tier_04C", + "GBID": 0, + "PAD": 0, + "SNOActor": 189862, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1300, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 4, + "CraftingQuality": 3, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751645528, + "Name": "Crafting_Tier_04D", + "GBID": 0, + "PAD": 0, + "SNOActor": 189863, + "ItemTypesGBID": -2019730316, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 4, + "CraftingQuality": 4, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1483346268, + "Name": "Crafting_AssortedParts_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 361984, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1107052530, + "Name": "Crafting_Magic_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 361985, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1242192649, + "Name": "Crafting_Rare_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 361986, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 998968328, + "Name": "Crafting_Legendary_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 361988, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1148381223, + "Name": "Crafting_Looted_Reagent_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 361989, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -725681754, + "Name": "Crafting_Training_Page_Blacksmith", + "GBID": 0, + "PAD": 0, + "SNOActor": 226723, + "ItemTypesGBID": -1083019022, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 680, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -977541326, + "Name": "Crafting_Training_Page_Jeweler", + "GBID": 0, + "PAD": 0, + "SNOActor": 226724, + "ItemTypesGBID": -1621997189, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 680, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1261330018, + "Name": "Crafting_Training_Tome_Blacksmith_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 230696, + "ItemTypesGBID": -1083019022, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1080, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1346194834, + "Name": "Crafting_Training_Tome_Jeweler_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 230697, + "ItemTypesGBID": -1621997189, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1080, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1280616435, + "Name": "Crafting_Training_Tome_Inferno", + "GBID": 0, + "PAD": 0, + "SNOActor": 189523, + "ItemTypesGBID": -5794479, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1280, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2130580611, + "Name": "Crafting_Training_Tome_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 346427, + "ItemTypesGBID": -5794479, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1280, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -723716136, + "Name": "Orn_Bag_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 3264, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -345213341, + "Name": "Orn_BlizzconPrize", + "GBID": 0, + "PAD": 0, + "SNOActor": 3369, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821679432, + "Name": "CowBell", + "GBID": 0, + "PAD": 0, + "SNOActor": 180697, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1721323061, + "Name": "Cow_Water", + "GBID": 0, + "PAD": 0, + "SNOActor": 214603, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 822688705, + "Name": "Cow_Gem", + "GBID": 0, + "PAD": 0, + "SNOActor": 214604, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1378754828, + "Name": "Cow_Bone", + "GBID": 0, + "PAD": 0, + "SNOActor": 214605, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1749978959, + "Name": "ScrapPaper_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 226372, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1749978958, + "Name": "ScrapPaper_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 226372, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1749978957, + "Name": "ScrapPaper_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 226372, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1749978956, + "Name": "ScrapPaper_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 226372, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1432277892, + "Name": "Key_Destruction", + "GBID": 0, + "PAD": 0, + "SNOActor": 255880, + "ItemTypesGBID": -1979915768, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1222391478, + "Name": "Key_Hate", + "GBID": 0, + "PAD": 0, + "SNOActor": 255881, + "ItemTypesGBID": -1979915768, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 729856678, + "Name": "Key_Terror", + "GBID": 0, + "PAD": 0, + "SNOActor": 255882, + "ItemTypesGBID": -1979915768, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 121075261, + "Name": "RedPortalDevice", + "GBID": 0, + "PAD": 0, + "SNOActor": 257737, + "ItemTypesGBID": -1041196094, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1403980515, + "Name": "CraftingPlan_Smith_Smith_RedPortalDevice", + "GBID": 0, + "PAD": 0, + "SNOActor": 253241, + "ItemTypesGBID": -1515023331, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 10, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -896435103, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -896435103, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 564084743, + "Name": "CraftingPlan_Jeweler_ShardRing", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2000000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -425243735, + 753467135, + -216108886, + -549132826, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -425243735, + 753467135, + -216108886, + -549132826, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2140150636, + "Name": "DemonOrgan_Eye", + "GBID": 0, + "PAD": 0, + "SNOActor": 257738, + "ItemTypesGBID": -49494186, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525754857, + "Name": "DemonOrgan_Tooth", + "GBID": 0, + "PAD": 0, + "SNOActor": 257736, + "ItemTypesGBID": -49494186, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 366110288, + "Name": "DemonOrgan_SpineCord", + "GBID": 0, + "PAD": 0, + "SNOActor": 257739, + "ItemTypesGBID": -49494186, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 293930641, + "Name": "Crafting_Demonic_Reagent", + "GBID": 0, + "PAD": 0, + "SNOActor": 283101, + "ItemTypesGBID": -1118030101, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1713863763, + "Name": "AmiiboPortalDevice", + "GBID": 0, + "PAD": 0, + "SNOActor": 479085, + "ItemTypesGBID": -1041196094, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 353156530, + "Name": "CraftingPlan_Smith_Smith_StaffofCow", + "GBID": 0, + "PAD": 0, + "SNOActor": 253241, + "ItemTypesGBID": -1515023331, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1707055702, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1707055702, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -656335728, + "Name": "CraftingPlan_Smith_Smith_StaffofCow_Nightmare", + "GBID": 0, + "PAD": 0, + "SNOActor": 253241, + "ItemTypesGBID": -1515023331, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 20000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -624347564, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -624347564, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1583256554, + "Name": "CraftingPlan_Smith_Smith_StaffofCow_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 253241, + "ItemTypesGBID": -1515023331, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 50000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -551724198, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -551724198, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -422563678, + "Name": "CraftingPlan_Smith_Smith_StaffofCow_Inferno", + "GBID": 0, + "PAD": 0, + "SNOActor": 253241, + "ItemTypesGBID": -1515023331, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 100000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -107017882, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -107017882, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 602802610, + "Name": "CraftingPlan_Smith_Smith_StaffofCow_alt", + "GBID": 0, + "PAD": 0, + "SNOActor": 253241, + "ItemTypesGBID": -1515023331, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 783231432, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 783231432, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -498027232, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Amethyst_08_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 639236059, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -497991271, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Amethyst_09_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 639272020, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 188522029, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Diamond_08_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -818219640, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 188557990, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Diamond_09_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -818183679, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 280948747, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Emerald_08_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -725792922, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 280984708, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Emerald_09_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -725756961, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1333695085, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Ruby_08_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 265849550, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1333659124, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Ruby_09_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 265885511, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1999428287, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Topaz_08_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1050173606, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1999464248, + "Name": "CraftingPlan_Jeweler_GemCombine_x1_Topaz_09_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1050137645, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220636628, + "Name": "CraftingPlan_Jeweler_GemCombine_Amethyst_11_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108746041, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220600690, + "Name": "CraftingPlan_Jeweler_GemCombine_Amethyst_12_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -108710103, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108710103, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220564752, + "Name": "CraftingPlan_Jeweler_GemCombine_Amethyst_13_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -108674165, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108674165, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220528814, + "Name": "CraftingPlan_Jeweler_GemCombine_Amethyst_14_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7740, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -108638227, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108638227, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -881094121, + "Name": "CraftingPlan_Jeweler_GemCombine_Emerald_11_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1788757166, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1788757166, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -881058183, + "Name": "CraftingPlan_Jeweler_GemCombine_Emerald_12_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1788721228, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1788721228, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -881022245, + "Name": "CraftingPlan_Jeweler_GemCombine_Emerald_13_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1788685290, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1788685290, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -880986307, + "Name": "CraftingPlan_Jeweler_GemCombine_Emerald_14_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7740, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1788649352, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1788649352, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 149178015, + "Name": "CraftingPlan_Jeweler_GemCombine_Ruby_11_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -612269638, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -612269638, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 149213953, + "Name": "CraftingPlan_Jeweler_GemCombine_Ruby_12_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -612233700, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -612233700, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 149249891, + "Name": "CraftingPlan_Jeweler_GemCombine_Ruby_13_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -612197762, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -612197762, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 149285829, + "Name": "CraftingPlan_Jeweler_GemCombine_Ruby_14_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7740, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -612161824, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -612161824, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -635267381, + "Name": "CraftingPlan_Jeweler_GemCombine_Topaz_11_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + 6763846, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 6763846, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -635231443, + "Name": "CraftingPlan_Jeweler_GemCombine_Topaz_12_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7500, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + 6799784, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 6799784, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -635195505, + "Name": "CraftingPlan_Jeweler_GemCombine_Topaz_13_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + 6835722, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 6835722, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -635159567, + "Name": "CraftingPlan_Jeweler_GemCombine_Topaz_14_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7740, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + 6871660, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 6871660, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220421000, + "Name": "CraftingPlan_Jeweler_GemCombine_Amethyst_17_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -108530413, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108530413, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -220385062, + "Name": "CraftingPlan_Jeweler_GemCombine_Amethyst_18_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -108494475, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -108494475, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -880878493, + "Name": "CraftingPlan_Jeweler_GemCombine_Emerald_17_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1788541538, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1788541538, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -880842555, + "Name": "CraftingPlan_Jeweler_GemCombine_Emerald_18_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1788505600, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1788505600, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 149393643, + "Name": "CraftingPlan_Jeweler_GemCombine_Ruby_17_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -612054010, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -612054010, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 149429581, + "Name": "CraftingPlan_Jeweler_GemCombine_Ruby_18_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -612018072, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -612018072, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -635051753, + "Name": "CraftingPlan_Jeweler_GemCombine_Topaz_17_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 6979474, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 6979474, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -635015815, + "Name": "CraftingPlan_Jeweler_GemCombine_Topaz_18_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 7015412, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 7015412, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -973305211, + "Name": "CraftingPlan_Jeweler_GemCombine_Diamond_17_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1880968256, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1880968256, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -973269273, + "Name": "CraftingPlan_Jeweler_GemCombine_Diamond_18_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1880932318, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1880932318, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1661419092, + "Name": "CraftingPlan_Smith_T10_Armor_Shield_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1017274416, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1017274416, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1643880825, + "Name": "CraftingPlan_Smith_T10_Armor_Helm_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1467308387, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1467308387, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -151038868, + "Name": "CraftingPlan_Smith_T10_Armor_Shoulders_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1397542896, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1397542896, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -616947542, + "Name": "CraftingPlan_Smith_T10_Armor_Chest_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -206976434, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -206976434, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1823034670, + "Name": "CraftingPlan_Smith_T10_Weapon_Fist_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1026336650, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1026336650, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1326372518, + "Name": "CraftingPlan_Smith_T10_Weapon_CombatStaff_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 195483626, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 195483626, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -346174734, + "Name": "CraftingPlan_Smith_T10_Weapon_Axe_1H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -324274762, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -324274762, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 881062851, + "Name": "CraftingPlan_Smith_T10_Weapon_Sword_1H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 2004113287, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 2004113287, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1868748458, + "Name": "CraftingPlan_Smith_T10_Weapon_Mace_1H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1740319250, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1740319250, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1776252528, + "Name": "CraftingPlan_Smith_T10_Weapon_MightyWeapon_1H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -915405356, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -915405356, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1777438449, + "Name": "CraftingPlan_Smith_T10_Weapon_MightyWeapon_2H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -914219435, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -914219435, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -344988813, + "Name": "CraftingPlan_Smith_T10_Weapon_Axe_2H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -323088841, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -323088841, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 882248772, + "Name": "CraftingPlan_Smith_T10_Weapon_Sword_2H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 2005299208, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 2005299208, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1869934379, + "Name": "CraftingPlan_Smith_T10_Weapon_Mace_2H_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1739133329, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1739133329, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1662503418, + "Name": "CraftingPlan_Smith_T10_Weapon_Wand_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -865805398, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -865805398, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087640360, + "Name": "CraftingPlan_Smith_T10_Weapon_CeremonialKnife_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 170002028, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 170002028, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 558884016, + "Name": "CraftingPlan_Smith_T10_Weapon_Staff_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1080114900, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1080114900, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1085620634, + "Name": "CraftingPlan_Smith_T10_Weapon_Dagger_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1064870646, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1064870646, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1384943809, + "Name": "CraftingPlan_Smith_T10_Weapon_Orb_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1621102493, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1621102493, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1148734095, + "Name": "CraftingPlan_Smith_T10_Weapon_Mojo_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -352036075, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -352036075, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -609028104, + "Name": "CraftingPlan_Smith_T10_Weapon_Quiver_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -588278116, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -588278116, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1156209966, + "Name": "CraftingPlan_Smith_T10_Weapon_Crossbow_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -2016856878, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -2016856878, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1896507004, + "Name": "CraftingPlan_Smith_T10_Weapon_Bow_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -2132665688, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -2132665688, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1584268617, + "Name": "CraftingPlan_Smith_T10_Weapon_HandCrossbow_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -905005299, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -905005299, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1661419091, + "Name": "CraftingPlan_Smith_T10_Armor_Shield_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1017274415, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1017274415, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1643880826, + "Name": "CraftingPlan_Smith_T10_Armor_Helm_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1467308386, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1467308386, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -151038867, + "Name": "CraftingPlan_Smith_T10_Armor_Shoulders_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1397542895, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1397542895, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -616947541, + "Name": "CraftingPlan_Smith_T10_Armor_Chest_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -206976433, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -206976433, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -724942694, + "Name": "CraftingPlan_Smith_T10_Armor_Pants_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -314971586, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -314971586, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -851872124, + "Name": "CraftingPlan_Smith_T10_Armor_Gloves_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -207727448, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -207727448, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 557127547, + "Name": "CraftingPlan_Smith_T10_Armor_Boots_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 967098655, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 967098655, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2028705622, + "Name": "CraftingPlan_Smith_T10_Armor_Bracers_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1810643450, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1810643450, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1809708133, + "Name": "CraftingPlan_Smith_T10_Armor_Belt_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -625930049, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -625930049, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1823034669, + "Name": "CraftingPlan_Smith_T10_Weapon_Fist_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1026336649, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1026336649, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1326372519, + "Name": "CraftingPlan_Smith_T10_Weapon_CombatStaff_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 195483627, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 195483627, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -346174733, + "Name": "CraftingPlan_Smith_T10_Weapon_Axe_1H_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -324274761, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -324274761, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 881062852, + "Name": "CraftingPlan_Smith_T10_Weapon_Sword_1H_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 2004113288, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 2004113288, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1868748459, + "Name": "CraftingPlan_Smith_T10_Weapon_Mace_1H_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1740319249, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1740319249, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1776252529, + "Name": "CraftingPlan_Smith_T10_Weapon_MightyWeapon_1H_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -915405355, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -915405355, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1777438450, + "Name": "CraftingPlan_Smith_T10_Weapon_MightyWeapon_2H_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -914219434, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -914219434, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -344988812, + "Name": "CraftingPlan_Smith_T10_Weapon_Axe_2H_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -323088840, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -323088840, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 882248773, + "Name": "CraftingPlan_Smith_T10_Weapon_Sword_2H_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 2005299209, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 2005299209, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1869934380, + "Name": "CraftingPlan_Smith_T10_Weapon_Mace_2H_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1739133328, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1739133328, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1662503417, + "Name": "CraftingPlan_Smith_T10_Weapon_Wand_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -865805397, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -865805397, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087640361, + "Name": "CraftingPlan_Smith_T10_Weapon_CeremonialKnife_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 170002029, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 170002029, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 558884017, + "Name": "CraftingPlan_Smith_T10_Weapon_Staff_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1080114901, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1080114901, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1085620633, + "Name": "CraftingPlan_Smith_T10_Weapon_Dagger_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1064870645, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1064870645, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1384943808, + "Name": "CraftingPlan_Smith_T10_Weapon_Orb_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1621102492, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1621102492, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1148734094, + "Name": "CraftingPlan_Smith_T10_Weapon_Mojo_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -352036074, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -352036074, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -609028103, + "Name": "CraftingPlan_Smith_T10_Weapon_Quiver_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -588278115, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -588278115, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1156209967, + "Name": "CraftingPlan_Smith_T10_Weapon_Crossbow_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -2016856877, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -2016856877, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1896507003, + "Name": "CraftingPlan_Smith_T10_Weapon_Bow_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -2132665687, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -2132665687, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1584268618, + "Name": "CraftingPlan_Smith_T10_Weapon_HandCrossbow_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -905005298, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -905005298, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1661419090, + "Name": "CraftingPlan_Smith_T10_Armor_Shield_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1017274414, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1017274414, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1643880827, + "Name": "CraftingPlan_Smith_T10_Armor_Helm_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1467308385, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1467308385, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -151038866, + "Name": "CraftingPlan_Smith_T10_Armor_Shoulders_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1397542894, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1397542894, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -616947540, + "Name": "CraftingPlan_Smith_T10_Armor_Chest_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -206976432, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -206976432, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -724942693, + "Name": "CraftingPlan_Smith_T10_Armor_Pants_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -314971585, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -314971585, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -851872123, + "Name": "CraftingPlan_Smith_T10_Armor_Gloves_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -207727447, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -207727447, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 557127548, + "Name": "CraftingPlan_Smith_T10_Armor_Boots_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 967098656, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 967098656, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2028705623, + "Name": "CraftingPlan_Smith_T10_Armor_Bracers_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1810643451, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1810643451, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1809708132, + "Name": "CraftingPlan_Smith_T10_Armor_Belt_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -625930048, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -625930048, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1458690750, + "Name": "CraftingPlan_Smith_T10_Armor_ChampionsBelt_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -738557822, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -738557822, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 623640959, + "Name": "CraftingPlan_Smith_T10_Armor_Cloak_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1033612067, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1033612067, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1440246727, + "Name": "CraftingPlan_Smith_T10_Armor_SpiritStone_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 612074749, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 612074749, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -64071433, + "Name": "CraftingPlan_Smith_T10_Armor_VoodooMask_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 128270651, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 128270651, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1751697821, + "Name": "CraftingPlan_Smith_T10_Armor_WizardHat_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1745869273, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1745869273, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1823034668, + "Name": "CraftingPlan_Smith_T10_Weapon_Fist_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1026336648, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1026336648, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1326372520, + "Name": "CraftingPlan_Smith_T10_Weapon_CombatStaff_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 195483628, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 195483628, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -346174732, + "Name": "CraftingPlan_Smith_T10_Weapon_Axe_1H_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -324274760, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -324274760, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 881062853, + "Name": "CraftingPlan_Smith_T10_Weapon_Sword_1H_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 2004113289, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 2004113289, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1868748460, + "Name": "CraftingPlan_Smith_T10_Weapon_Mace_1H_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1740319248, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1740319248, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1776252530, + "Name": "CraftingPlan_Smith_T10_Weapon_MightyWeapon_1H_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -915405354, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -915405354, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1777438451, + "Name": "CraftingPlan_Smith_T10_Weapon_MightyWeapon_2H_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -914219433, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -914219433, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -344988811, + "Name": "CraftingPlan_Smith_T10_Weapon_Axe_2H_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -323088839, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -323088839, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 882248774, + "Name": "CraftingPlan_Smith_T10_Weapon_Sword_2H_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 2005299210, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 2005299210, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1869934381, + "Name": "CraftingPlan_Smith_T10_Weapon_Mace_2H_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1739133327, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1739133327, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1662503416, + "Name": "CraftingPlan_Smith_T10_Weapon_Wand_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -865805396, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -865805396, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1087640362, + "Name": "CraftingPlan_Smith_T10_Weapon_CeremonialKnife_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 170002030, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 170002030, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 558884018, + "Name": "CraftingPlan_Smith_T10_Weapon_Staff_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1080114902, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1080114902, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1085620632, + "Name": "CraftingPlan_Smith_T10_Weapon_Dagger_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1064870644, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1064870644, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1384943807, + "Name": "CraftingPlan_Smith_T10_Weapon_Orb_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1621102491, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1621102491, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1148734093, + "Name": "CraftingPlan_Smith_T10_Weapon_Mojo_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -352036073, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -352036073, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -609028102, + "Name": "CraftingPlan_Smith_T10_Weapon_Quiver_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -588278114, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -588278114, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1156209968, + "Name": "CraftingPlan_Smith_T10_Weapon_Crossbow_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -2016856876, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -2016856876, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1896507002, + "Name": "CraftingPlan_Smith_T10_Weapon_Bow_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -2132665686, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -2132665686, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1584268619, + "Name": "CraftingPlan_Smith_T10_Weapon_HandCrossbow_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5580, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -905005297, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -905005297, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 510993248, + "Name": "CraftingPlan_Smith_T04_Legendary_Weapon_CombatStaff", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1452309436, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1452309436, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229459354, + "Name": "CraftingPlan_Smith_T04_Legendary_Armor_Shield", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1300247510, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1300247510, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -956459522, + "Name": "CraftingPlan_Smith_T04_Legendary_Weapon_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -765304126, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -765304126, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -892634196, + "Name": "CraftingPlan_Smith_T04_Legendary_Weapon_MightyWeapon2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1621549616, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1621549616, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1269238495, + "Name": "CraftingPlan_Smith_T04_Legendary_Weapon_CeremonialDagger", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1891071421, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1891071421, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 610488276, + "Name": "CraftingPlan_Smith_T04_Legendary_Armor_Belt", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1099268083, + "Name": "CraftingPlan_Smith_T05_Legendary_Weapon_Axe_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3900, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 799491697, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 799491697, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1289392843, + "Name": "CraftingPlan_Smith_T05_Legendary_Weapon_Staff", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3900, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -995778417, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -995778417, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1860959084, + "Name": "CraftingPlan_Smith_T05_Legendary_Weapon_Mojo", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3900, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -420847440, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -420847440, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1953739871, + "Name": "CraftingPlan_Smith_T06_Legendary_Armor_Gloves", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5460, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 882951715, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 882951715, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 351422469, + "Name": "CraftingPlan_Smith_T06_Legendary_Weapon_HandCrossbow", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5460, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1020153193, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1020153193, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1375991016, + "Name": "CraftingPlan_Smith_T07_Legendary_Weapon_Mace_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -389446708, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -389446708, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -859014579, + "Name": "CraftingPlan_Smith_T07_Legendary_Weapon_MightyWeapon_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 504671569, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 504671569, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -11318801, + "Name": "CraftingPlan_Smith_T07_Legendary_Weapon_Fist", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 2001841971, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 2001841971, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 520269180, + "Name": "CraftingPlan_Smith_T07_Legendary_Weapon_Orb", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 6660, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 711424576, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 711424576, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -777433512, + "Name": "CraftingPlan_Smith_T08_Legendary_Armor_Boots", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7020, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1272526748, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1272526748, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525782260, + "Name": "CraftingPlan_Smith_T08_Legendary_Weapon_Crossbow", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7020, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 344313936, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 344313936, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1769726947, + "Name": "CraftingPlan_Smith_T10_Legendary_Weapon_Dagger", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 129032801, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 129032801, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -792214246, + "Name": "CraftingPlan_Smith_T10_Legendary_Weapon_Sword_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1077881982, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1077881982, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1859939254, + "Name": "CraftingPlan_Smith_T10_Legendary_Weapon_Axe_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 38820526, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 38820526, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 462038561, + "Name": "CraftingPlan_Smith_T10_Legendary_Weapon_Mace_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1303399163, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1303399163, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -998110661, + "Name": "CraftingPlan_Smith_T10_Legendary_Weapon_Bow", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -806955265, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -806955265, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2066447203, + "Name": "CraftingPlan_Smith_T10_Legendary_Weapon_CombatStaff", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 265217409, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 265217409, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1422825789, + "Name": "CraftingPlan_Smith_T10_Legendary_Weapon_Wand", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -858980735, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -858980735, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1237160209, + "Name": "CraftingPlan_Smith_T10_Legendary_Weapon_Quiver", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 661599539, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 661599539, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 569052752, + "Name": "CraftingPlan_Smith_T10_Legendary_Armor_Helm", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 761323284, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 761323284, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1248918676, + "Name": "CraftingPlan_Smith_T10_Legendary_Armor_Bracers", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 2069777840, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 2069777840, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1593042529, + "Name": "CraftingPlan_Smith_T10_Legendary_Armor_Chest", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -651964507, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -651964507, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1608217776, + "Name": "CraftingPlan_Smith_T10_Legendary_Armor_Pants", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -636789260, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -636789260, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 926006883, + "Name": "CraftingPlan_Smith_T10_Legendary_Armor_Shoulders", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1375950425, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1375950425, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1234451343, + "Name": "CraftingPlan_Smith_T04_Legendary_Set_Normal_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1149398789, + 1057621227, + 1525158381, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1149398789, + 1057621227, + 1525158381, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1234451342, + "Name": "CraftingPlan_Smith_T04_Legendary_Set_Normal_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1946801540, + 372179653, + -1620595653, + -1930702853, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1946801540, + 372179653, + -1620595653, + -1930702853, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1195728824, + "Name": "CraftingPlan_Smith_T05_Legendary_Set_Nightmare_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3900, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + 1526622290, + 1087454482, + 1542720977, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1526622290, + 1087454482, + 1542720977, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1898542134, + "Name": "CraftingPlan_Smith_T06_Legendary_Set_Nightmare_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5220, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1718241786, + 1044035151, + -432044924, + 2069492755, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1718241786, + 1044035151, + -432044924, + 2069492755, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 614258576, + "Name": "CraftingPlan_Smith_T07_Legendary_Set_Hell_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 6420, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -614197556, + -15644893, + -901250919, + -917349606, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -614197556, + -15644893, + -901250919, + -917349606, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -209301902, + "Name": "CraftingPlan_Smith_T08_Legendary_Set_Hell_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 6780, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + 1193895543, + -1342240004, + -1342024389, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1193895543, + -1342240004, + -1342024389, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1684115062, + "Name": "CraftingPlan_Smith_T10_Legendary_Set_Inferno_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1747568848, + -833898752, + -1732393601, + -950149454, + -1337408517, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1747568848, + -833898752, + -1732393601, + -950149454, + -1337408517, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1684115063, + "Name": "CraftingPlan_Smith_T10_Legendary_Set_Inferno_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -2004779606, + -457024319, + -794547744, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -2004779606, + -457024319, + -794547744, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1684115064, + "Name": "CraftingPlan_Smith_T10_Legendary_Set_Inferno_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7380, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1871362476, + -1968586993, + -754877595, + -734935385, + -715827288, + -755479631, + 1737990257, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1871362476, + -1968586993, + -754877595, + -734935385, + -715827288, + -755479631, + 1737990257, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1652475105, + "Name": "CraftingPlan_Smith_T11_Armor_Gloves_Dex", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1434447781, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1434447781, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1652480843, + "Name": "CraftingPlan_Smith_T11_Armor_Gloves_Int", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1434453519, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1434453519, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1652491929, + "Name": "CraftingPlan_Smith_T11_Armor_Gloves_Str", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1434464605, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1434464605, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1652494835, + "Name": "CraftingPlan_Smith_T11_Armor_Gloves_Vit", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1434467511, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1434467511, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 670513226, + "Name": "CraftingPlan_Smith_T11_Armor_Shoulders_Dex", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1809379186, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1809379186, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 670518964, + "Name": "CraftingPlan_Smith_T11_Armor_Shoulders_Int", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1809373448, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1809373448, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 670530050, + "Name": "CraftingPlan_Smith_T11_Armor_Shoulders_Str", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1809362362, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1809362362, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 670532956, + "Name": "CraftingPlan_Smith_T11_Armor_Shoulders_Vit", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1809359456, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1809359456, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -715623480, + "Name": "CraftingPlan_Smith_T11_Armor_Chest_Dex", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -71443956, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -71443956, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -715617742, + "Name": "CraftingPlan_Smith_T11_Armor_Chest_Int", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -71438218, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -71438218, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -715606656, + "Name": "CraftingPlan_Smith_T11_Armor_Chest_Str", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -71427132, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -71427132, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -715603750, + "Name": "CraftingPlan_Smith_T11_Armor_Chest_Vit", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -71424226, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -71424226, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1194935315, + "Name": "CraftingPlan_Smith_T11_Armor_Bracers_Dex", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1706114217, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1706114217, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1194941053, + "Name": "CraftingPlan_Smith_T11_Armor_Bracers_Int", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1706108479, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1706108479, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1194952139, + "Name": "CraftingPlan_Smith_T11_Armor_Bracers_Str", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1706097393, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1706097393, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1194955045, + "Name": "CraftingPlan_Smith_T11_Armor_Bracers_Vit", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1515023331, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1706094487, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1706094487, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1703581113, + "Name": "CraftingPlan_Smith_T11_Amulet_Dex", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1861093725, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1861093725, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1703586851, + "Name": "CraftingPlan_Smith_T11_Amulet_Int", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1861099463, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1861099463, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1703597937, + "Name": "CraftingPlan_Smith_T11_Amulet_Str", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1861110549, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1861110549, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1703600843, + "Name": "CraftingPlan_Smith_T11_Amulet_Vit", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 7620, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + 1861113455, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1861113455, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1038247340, + "Name": "ShrineGlobe_Fortune", + "GBID": 0, + "PAD": 0, + "SNOActor": 298257, + "ItemTypesGBID": 1509903661, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2042013485, + "Name": "ShrineGlobe_Blessed", + "GBID": 0, + "PAD": 0, + "SNOActor": 298255, + "ItemTypesGBID": 1509903661, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -838688536, + "Name": "ShrineGlobe_Frenzied", + "GBID": 0, + "PAD": 0, + "SNOActor": 298258, + "ItemTypesGBID": 1509903661, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1010893032, + "Name": "ShrineGlobe_Enlightened", + "GBID": 0, + "PAD": 0, + "SNOActor": 298256, + "ItemTypesGBID": 1509903661, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 96749590, + "Name": "PowerGlobe", + "GBID": 0, + "PAD": 0, + "SNOActor": 301283, + "ItemTypesGBID": 1509903661, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1440863750, + "Name": "PowerGlobe_NoFlippy", + "GBID": 0, + "PAD": 0, + "SNOActor": 376019, + "ItemTypesGBID": 1509903661, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 594294291, + "Name": "ScrollCompanion", + "GBID": 0, + "PAD": 0, + "SNOActor": 129267, + "ItemTypesGBID": 327230447, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 60, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 102278386, + "Name": "Shard", + "GBID": 0, + "PAD": 0, + "SNOActor": 327572, + "ItemTypesGBID": 140227858, + "Flags": 16416, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 783080188, + "Name": "GreaterShard", + "GBID": 0, + "PAD": 0, + "SNOActor": 327573, + "ItemTypesGBID": 1331402556, + "Flags": 16416, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -825180420, + "Name": "LootRunKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 323722, + "ItemTypesGBID": -137533477, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 125000, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2117448890, + "Name": "GreaterLootRunKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 408416, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878232, + "Name": "TieredLootrunKey_0", + "GBID": 0, + "PAD": 0, + "SNOActor": 408416, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878231, + "Name": "TieredLootrunKey_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 408130, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878230, + "Name": "TieredLootrunKey_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 408131, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878229, + "Name": "TieredLootrunKey_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 408132, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878228, + "Name": "TieredLootrunKey_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 408133, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878227, + "Name": "TieredLootrunKey_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 408134, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878226, + "Name": "TieredLootrunKey_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 408135, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878225, + "Name": "TieredLootrunKey_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 408136, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878224, + "Name": "TieredLootrunKey_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 408137, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1860878223, + "Name": "TieredLootrunKey_9", + "GBID": 0, + "PAD": 0, + "SNOActor": 408138, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439431, + "Name": "TieredLootrunKey_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 408140, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439430, + "Name": "TieredLootrunKey_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 408141, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439429, + "Name": "TieredLootrunKey_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 408142, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439428, + "Name": "TieredLootrunKey_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 408143, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439427, + "Name": "TieredLootrunKey_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 408144, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439426, + "Name": "TieredLootrunKey_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 408145, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439425, + "Name": "TieredLootrunKey_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 408146, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439424, + "Name": "TieredLootrunKey_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 408147, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439423, + "Name": "TieredLootrunKey_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 408148, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439422, + "Name": "TieredLootrunKey_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 408149, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439398, + "Name": "TieredLootrunKey_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 408150, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439397, + "Name": "TieredLootrunKey_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 408151, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439396, + "Name": "TieredLootrunKey_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 408152, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439395, + "Name": "TieredLootrunKey_23", + "GBID": 0, + "PAD": 0, + "SNOActor": 408153, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439394, + "Name": "TieredLootrunKey_24", + "GBID": 0, + "PAD": 0, + "SNOActor": 408154, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439393, + "Name": "TieredLootrunKey_25", + "GBID": 0, + "PAD": 0, + "SNOActor": 408155, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439392, + "Name": "TieredLootrunKey_26", + "GBID": 0, + "PAD": 0, + "SNOActor": 408156, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439391, + "Name": "TieredLootrunKey_27", + "GBID": 0, + "PAD": 0, + "SNOActor": 408157, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439390, + "Name": "TieredLootrunKey_28", + "GBID": 0, + "PAD": 0, + "SNOActor": 408158, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439389, + "Name": "TieredLootrunKey_29", + "GBID": 0, + "PAD": 0, + "SNOActor": 408159, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439365, + "Name": "TieredLootrunKey_30", + "GBID": 0, + "PAD": 0, + "SNOActor": 408160, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439364, + "Name": "TieredLootrunKey_31", + "GBID": 0, + "PAD": 0, + "SNOActor": 408161, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439363, + "Name": "TieredLootrunKey_32", + "GBID": 0, + "PAD": 0, + "SNOActor": 408162, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439362, + "Name": "TieredLootrunKey_33", + "GBID": 0, + "PAD": 0, + "SNOActor": 408163, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439361, + "Name": "TieredLootrunKey_34", + "GBID": 0, + "PAD": 0, + "SNOActor": 408164, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439360, + "Name": "TieredLootrunKey_35", + "GBID": 0, + "PAD": 0, + "SNOActor": 408165, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439359, + "Name": "TieredLootrunKey_36", + "GBID": 0, + "PAD": 0, + "SNOActor": 408166, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439358, + "Name": "TieredLootrunKey_37", + "GBID": 0, + "PAD": 0, + "SNOActor": 408167, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439357, + "Name": "TieredLootrunKey_38", + "GBID": 0, + "PAD": 0, + "SNOActor": 408168, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439356, + "Name": "TieredLootrunKey_39", + "GBID": 0, + "PAD": 0, + "SNOActor": 408169, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439332, + "Name": "TieredLootrunKey_40", + "GBID": 0, + "PAD": 0, + "SNOActor": 408170, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439331, + "Name": "TieredLootrunKey_41", + "GBID": 0, + "PAD": 0, + "SNOActor": 408171, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439330, + "Name": "TieredLootrunKey_42", + "GBID": 0, + "PAD": 0, + "SNOActor": 408172, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439329, + "Name": "TieredLootrunKey_43", + "GBID": 0, + "PAD": 0, + "SNOActor": 408173, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439328, + "Name": "TieredLootrunKey_44", + "GBID": 0, + "PAD": 0, + "SNOActor": 408174, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439327, + "Name": "TieredLootrunKey_45", + "GBID": 0, + "PAD": 0, + "SNOActor": 408175, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439326, + "Name": "TieredLootrunKey_46", + "GBID": 0, + "PAD": 0, + "SNOActor": 408176, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439325, + "Name": "TieredLootrunKey_47", + "GBID": 0, + "PAD": 0, + "SNOActor": 408177, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439324, + "Name": "TieredLootrunKey_48", + "GBID": 0, + "PAD": 0, + "SNOActor": 408178, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439323, + "Name": "TieredLootrunKey_49", + "GBID": 0, + "PAD": 0, + "SNOActor": 408179, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439299, + "Name": "TieredLootrunKey_50", + "GBID": 0, + "PAD": 0, + "SNOActor": 408180, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439298, + "Name": "TieredLootrunKey_51", + "GBID": 0, + "PAD": 0, + "SNOActor": 408181, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439297, + "Name": "TieredLootrunKey_52", + "GBID": 0, + "PAD": 0, + "SNOActor": 408182, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439296, + "Name": "TieredLootrunKey_53", + "GBID": 0, + "PAD": 0, + "SNOActor": 408183, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439295, + "Name": "TieredLootrunKey_54", + "GBID": 0, + "PAD": 0, + "SNOActor": 408184, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439294, + "Name": "TieredLootrunKey_55", + "GBID": 0, + "PAD": 0, + "SNOActor": 408185, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439293, + "Name": "TieredLootrunKey_56", + "GBID": 0, + "PAD": 0, + "SNOActor": 408186, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439292, + "Name": "TieredLootrunKey_57", + "GBID": 0, + "PAD": 0, + "SNOActor": 408187, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439291, + "Name": "TieredLootrunKey_58", + "GBID": 0, + "PAD": 0, + "SNOActor": 408188, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439290, + "Name": "TieredLootrunKey_59", + "GBID": 0, + "PAD": 0, + "SNOActor": 408189, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439266, + "Name": "TieredLootrunKey_60", + "GBID": 0, + "PAD": 0, + "SNOActor": 408190, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439265, + "Name": "TieredLootrunKey_61", + "GBID": 0, + "PAD": 0, + "SNOActor": 408191, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439264, + "Name": "TieredLootrunKey_62", + "GBID": 0, + "PAD": 0, + "SNOActor": 408192, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439263, + "Name": "TieredLootrunKey_63", + "GBID": 0, + "PAD": 0, + "SNOActor": 408193, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439262, + "Name": "TieredLootrunKey_64", + "GBID": 0, + "PAD": 0, + "SNOActor": 408194, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439261, + "Name": "TieredLootrunKey_65", + "GBID": 0, + "PAD": 0, + "SNOActor": 408195, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439260, + "Name": "TieredLootrunKey_66", + "GBID": 0, + "PAD": 0, + "SNOActor": 408196, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439259, + "Name": "TieredLootrunKey_67", + "GBID": 0, + "PAD": 0, + "SNOActor": 408197, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439258, + "Name": "TieredLootrunKey_68", + "GBID": 0, + "PAD": 0, + "SNOActor": 408198, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439257, + "Name": "TieredLootrunKey_69", + "GBID": 0, + "PAD": 0, + "SNOActor": 408199, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439233, + "Name": "TieredLootrunKey_70", + "GBID": 0, + "PAD": 0, + "SNOActor": 408200, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439232, + "Name": "TieredLootrunKey_71", + "GBID": 0, + "PAD": 0, + "SNOActor": 408201, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439231, + "Name": "TieredLootrunKey_72", + "GBID": 0, + "PAD": 0, + "SNOActor": 408202, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439230, + "Name": "TieredLootrunKey_73", + "GBID": 0, + "PAD": 0, + "SNOActor": 408203, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439229, + "Name": "TieredLootrunKey_74", + "GBID": 0, + "PAD": 0, + "SNOActor": 408204, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439228, + "Name": "TieredLootrunKey_75", + "GBID": 0, + "PAD": 0, + "SNOActor": 408205, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439227, + "Name": "TieredLootrunKey_76", + "GBID": 0, + "PAD": 0, + "SNOActor": 408206, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439226, + "Name": "TieredLootrunKey_77", + "GBID": 0, + "PAD": 0, + "SNOActor": 408207, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439225, + "Name": "TieredLootrunKey_78", + "GBID": 0, + "PAD": 0, + "SNOActor": 408208, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439224, + "Name": "TieredLootrunKey_79", + "GBID": 0, + "PAD": 0, + "SNOActor": 408209, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439200, + "Name": "TieredLootrunKey_80", + "GBID": 0, + "PAD": 0, + "SNOActor": 408210, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439199, + "Name": "TieredLootrunKey_81", + "GBID": 0, + "PAD": 0, + "SNOActor": 408211, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439198, + "Name": "TieredLootrunKey_82", + "GBID": 0, + "PAD": 0, + "SNOActor": 408212, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439197, + "Name": "TieredLootrunKey_83", + "GBID": 0, + "PAD": 0, + "SNOActor": 408213, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439196, + "Name": "TieredLootrunKey_84", + "GBID": 0, + "PAD": 0, + "SNOActor": 408214, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439195, + "Name": "TieredLootrunKey_85", + "GBID": 0, + "PAD": 0, + "SNOActor": 408215, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439194, + "Name": "TieredLootrunKey_86", + "GBID": 0, + "PAD": 0, + "SNOActor": 408216, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439193, + "Name": "TieredLootrunKey_87", + "GBID": 0, + "PAD": 0, + "SNOActor": 408217, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439192, + "Name": "TieredLootrunKey_88", + "GBID": 0, + "PAD": 0, + "SNOActor": 408218, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439191, + "Name": "TieredLootrunKey_89", + "GBID": 0, + "PAD": 0, + "SNOActor": 408219, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439167, + "Name": "TieredLootrunKey_90", + "GBID": 0, + "PAD": 0, + "SNOActor": 408220, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439166, + "Name": "TieredLootrunKey_91", + "GBID": 0, + "PAD": 0, + "SNOActor": 408221, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439165, + "Name": "TieredLootrunKey_92", + "GBID": 0, + "PAD": 0, + "SNOActor": 408222, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439164, + "Name": "TieredLootrunKey_93", + "GBID": 0, + "PAD": 0, + "SNOActor": 408223, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439163, + "Name": "TieredLootrunKey_94", + "GBID": 0, + "PAD": 0, + "SNOActor": 408224, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439162, + "Name": "TieredLootrunKey_95", + "GBID": 0, + "PAD": 0, + "SNOActor": 408225, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439161, + "Name": "TieredLootrunKey_96", + "GBID": 0, + "PAD": 0, + "SNOActor": 408226, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439160, + "Name": "TieredLootrunKey_97", + "GBID": 0, + "PAD": 0, + "SNOActor": 408227, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439159, + "Name": "TieredLootrunKey_98", + "GBID": 0, + "PAD": 0, + "SNOActor": 408228, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279439158, + "Name": "TieredLootrunKey_99", + "GBID": 0, + "PAD": 0, + "SNOActor": 408229, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 728171785, + "Name": "TieredLootrunKey_100", + "GBID": 0, + "PAD": 0, + "SNOActor": 408230, + "ItemTypesGBID": -137533477, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 15, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1398, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1858811472, + "Name": "BountyScroll", + "GBID": 0, + "PAD": 0, + "SNOActor": 275154, + "ItemTypesGBID": 1987526610, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 200, + "CostAlt": 3, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 729, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": 356461, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1283035275, + "Name": "P2_WizardSet_Scroll_Test", + "GBID": 0, + "PAD": 0, + "SNOActor": 275154, + "ItemTypesGBID": 1987526610, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 200, + "CostAlt": 3, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 729, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1293, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1026251909, + "Name": "Debug_Transmog_Plan", + "GBID": 0, + "PAD": 0, + "SNOActor": 359465, + "ItemTypesGBID": 1295639964, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 6, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1316774087, + 1316989709, + 1316702213, + 1315552229, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929962837, + "Name": "X1_PromoTransmogPlan_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 398367, + "ItemTypesGBID": 1295639964, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 595814643, + 2032005920, + 1226090826, + -44923323, + -96858155, + -1934140787, + 229247441, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929962836, + "Name": "X1_PromoTransmogPlan_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 398367, + "ItemTypesGBID": 1295639964, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 974107120, + 974143057, + -843818268, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929962835, + "Name": "X1_PromoTransmogPlan_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 398367, + "ItemTypesGBID": 1295639964, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -639326280, + 1821181577, + 204261921, + 1571690839, + -305758345, + 2112365407, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1869712607, + "Name": "p1_SeasonTransmogPlan_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 398367, + "ItemTypesGBID": 1295639964, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1239902833, + 1902294393, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1373317936, + "Name": "NX_Transmog_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 398367, + "ItemTypesGBID": 1295639964, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 164868426, + -258252199, + 1091274466, + -604756776, + -1918343200, + -1510431048, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1084455785, + "Name": "BlizzConlineTransmogPlan", + "GBID": 0, + "PAD": 0, + "SNOActor": 398367, + "ItemTypesGBID": 1295639964, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1524673483, + -53442502, + -739940125, + 2134610585, + 1440614049, + -1305621351, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1494420062, + "Name": "D2RTransmogPlan", + "GBID": 0, + "PAD": 0, + "SNOActor": 398367, + "ItemTypesGBID": 1295639964, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1524673483, + -53442502, + -739940125, + 2134610585, + 1440614049, + -1305621351, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663811495, + "Name": "P4_SeasonCache_S1_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 444430, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663811496, + "Name": "P4_SeasonCache_S1_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447503, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663811497, + "Name": "P4_SeasonCache_S1_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447506, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663847432, + "Name": "P4_SeasonCache_S2_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447507, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663847433, + "Name": "P4_SeasonCache_S2_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447533, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663847434, + "Name": "P4_SeasonCache_S2_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447535, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663883369, + "Name": "P4_SeasonCache_S3_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447538, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663883370, + "Name": "P4_SeasonCache_S3_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447539, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663883371, + "Name": "P4_SeasonCache_S3_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447540, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663919306, + "Name": "P4_SeasonCache_S4_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447549, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663919307, + "Name": "P4_SeasonCache_S4_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447552, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 663919308, + "Name": "P4_SeasonCache_S4_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 447554, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1711334930, + "Name": "P610_SeasonCache_S5_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 484586, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1711334929, + "Name": "P610_SeasonCache_S5_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 484585, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1711334928, + "Name": "P610_SeasonCache_S5_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 444429, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 484587, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1549843900, + "Name": "P43_PTR_ItemBagTest", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 300, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 460237, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1617498258, + "Name": "P264_PTRBag_Necromancer_SetsAll", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483033, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1476882039, + "Name": "P6_PTRBag_Necro_Set_Bone", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 476131, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1492573323, + "Name": "P6_PTRBag_Necro_Set_Blood", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 476129, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1472814524, + "Name": "P6_PTRBag_Necro_Set_Saint", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 476132, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1462895069, + "Name": "P6_PTRBag_Necro_Set_Plague", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 476133, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1127317855, + "Name": "P6_PTRBag_Necro_Offset_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 477540, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 477557, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1127317854, + "Name": "P6_PTRBag_Necro_Offset_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 477540, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 477558, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450095147, + "Name": "P6_PTRBag_Necro_Scythes_1H", + "GBID": 0, + "PAD": 0, + "SNOActor": 477540, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 477559, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -450095114, + "Name": "P6_PTRBag_Necro_Scythes_2H", + "GBID": 0, + "PAD": 0, + "SNOActor": 477540, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 477560, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 935852455, + "Name": "P6_PTRBag_Necro_Phylacteries", + "GBID": 0, + "PAD": 0, + "SNOActor": 477540, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 477561, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -367638307, + "Name": "P6_PTRBag_Necro_Rings", + "GBID": 0, + "PAD": 0, + "SNOActor": 477540, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 477562, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1241265387, + "Name": "P6_PTRBag_Necro_Amulets", + "GBID": 0, + "PAD": 0, + "SNOActor": 477540, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 477563, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2033000463, + "Name": "P6_PTRBag_Necro_ScytheShieldSet", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 477564, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2066062591, + "Name": "P61_PTRBag_New_NonNecro_Items", + "GBID": 0, + "PAD": 0, + "SNOActor": 477540, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 200, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 478512, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 166937752, + "Name": "P264_PTRBag_Barb_SetsAll", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483030, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -234749201, + "Name": "P264_PTRBag_Barb_Set_Raekor", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483006, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1891482964, + "Name": "P264_PTRBag_Barb_Set_ImmortalKings", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483007, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 557132782, + "Name": "P264_PTRBag_Barb_Set_MightoftheEarth", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483008, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -950214165, + "Name": "P264_PTRBag_Barb_Set_WrathoftheWaste", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483009, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1195512102, + "Name": "P264_PTRBag_Crusader_SetsAll", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483032, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -621208581, + "Name": "P264_PTRBag_Crusader_Set_Akkhan", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483010, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 118961195, + "Name": "P264_PTRBag_Crusader_Set_Thorns", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483011, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 48865517, + "Name": "P264_PTRBag_Crusader_Set_Roland", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483012, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 75900748, + "Name": "P264_PTRBag_Crusader_Set_Seeker", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483013, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 704075946, + "Name": "P264_PTRBag_DemonHunter_SetsAll", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483036, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1902905106, + "Name": "P264_PTRBag_DemonHunter_Set_Marauder", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483014, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1861567946, + "Name": "P264_PTRBag_DemonHunter_Set_UnhallowedEssence", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483015, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325639385, + "Name": "P264_PTRBag_DemonHunter_Set_Natalya", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483016, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1699110583, + "Name": "P264_PTRBag_DemonHunter_Set_ShadowsMantle", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483017, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2008016342, + "Name": "P264_PTRBag_Monk_SetsAll", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483031, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1234071133, + "Name": "P264_PTRBag_Monk_Set_Uliana", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483018, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -181700350, + "Name": "P264_PTRBag_Monk_Set_Innas", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483019, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 376008257, + "Name": "P264_PTRBag_Monk_Set_MonkeyKingGarb", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483020, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1253994755, + "Name": "P264_PTRBag_Monk_Set_RaimentofaThousandStorms", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483021, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -452340341, + "Name": "P264_PTRBag_WitchDoctor_SetsAll", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483034, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 11955320, + "Name": "P264_PTRBag_WitchDoctor_Set_SpiritofArachyr", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483022, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1624270267, + "Name": "P264_PTRBag_WitchDoctor_Set_HelltoothHarness", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483023, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1955420148, + "Name": "P264_PTRBag_WitchDoctor_Set_RaimentoftheJadeHarvester", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483024, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1129940007, + "Name": "P264_PTRBag_WitchDoctor_Set_Zunimassa", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483025, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 596070898, + "Name": "P264_PTRBag_Wizard_SetsAll", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483035, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1342323391, + "Name": "P264_PTRBag_Wizard_Set_Firebirds", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483026, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1384483240, + "Name": "P264_PTRBag_Wizard_Set_TalRashas", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483027, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -304744715, + "Name": "P264_PTRBag_Wizard_Set_DelsereMagnumOpus", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483028, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1827446119, + "Name": "P264_PTRBag_Wizard_Set_Vyrs", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483029, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1641007257, + "Name": "P264_PTRBag_Weapons", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483037, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 955763136, + "Name": "P264_PTRBag_OffHand", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483038, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -153323509, + "Name": "P264_PTRBag_Armor", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483039, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1224529844, + "Name": "P264_PTRBag_Jewelry", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483040, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -517152764, + "Name": "P265_PTRTestItems", + "GBID": 0, + "PAD": 0, + "SNOActor": 460245, + "ItemTypesGBID": 1650316949, + "Flags": 2097376, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483424, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 953622122, + "Name": "Platinum", + "GBID": 0, + "PAD": 0, + "SNOActor": 430367, + "ItemTypesGBID": -1055802742, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1678181754, + "Name": "PlatinumUncapped", + "GBID": 0, + "PAD": 0, + "SNOActor": 430367, + "ItemTypesGBID": -1055802742, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1391622981, + "Name": "HoradricRelic", + "GBID": 0, + "PAD": 0, + "SNOActor": 359504, + "ItemTypesGBID": 1932948546, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 500, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1713367598, + "Name": "HoradricCacheA1", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 347355, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1713367597, + "Name": "HoradricCacheA2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 355719, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1713367596, + "Name": "HoradricCacheA3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 355721, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1713367595, + "Name": "HoradricCacheA4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 355725, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1713367594, + "Name": "HoradricCacheA5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 355722, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -180200118, + "Name": "GreaterHoradricCache", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 100, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 360187, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -937750433, + "Name": "HoradricCacheBonusAct", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 361066, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 350475729, + "Name": "HoradricCacheA1Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439258, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 351661650, + "Name": "HoradricCacheA2Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439260, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 352847571, + "Name": "HoradricCacheA3Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439262, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 354033492, + "Name": "HoradricCacheA4Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439264, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 355219413, + "Name": "HoradricCacheA5Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439266, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -674217366, + "Name": "HoradricCacheA1Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437978, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 617250603, + "Name": "HoradricCacheA2Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437979, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1908718572, + "Name": "HoradricCacheA3Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437981, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1094780755, + "Name": "HoradricCacheA4Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437983, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 196687214, + "Name": "HoradricCacheA5Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437985, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -388286690, + "Name": "HoradricCacheA1Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439259, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 903181279, + "Name": "HoradricCacheA2Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439261, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2100318048, + "Name": "HoradricCacheA3Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439263, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -808850079, + "Name": "HoradricCacheA4Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439265, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 482617890, + "Name": "HoradricCacheA5Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439267, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1068240315, + "Name": "HoradricCacheA1Torment", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437976, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 737010332, + "Name": "HoradricCacheA2Torment", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437980, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 405780349, + "Name": "HoradricCacheA3Torment", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437982, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 74550366, + "Name": "HoradricCacheA4Torment", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437984, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -256679617, + "Name": "HoradricCacheA5Torment", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437986, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1179369933, + "Name": "GreaterHoradricCacheTorment", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 100, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 360187, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1389103016, + "Name": "HoradricCacheBonusActTorment", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 1048672, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 361066, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 892192077, + "Name": "HoradricCacheA1Torment2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394374, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 892192078, + "Name": "HoradricCacheA1Torment3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394375, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 892192079, + "Name": "HoradricCacheA1Torment4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394376, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 892192080, + "Name": "HoradricCacheA1Torment5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394377, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 892192081, + "Name": "HoradricCacheA1Torment6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394378, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 892192082, + "Name": "HoradricCacheA1Torment7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439952, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 892192083, + "Name": "HoradricCacheA1Torment8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439954, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 892192084, + "Name": "HoradricCacheA1Torment9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439955, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -622432516, + "Name": "HoradricCacheA1Torment10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439956, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -622432515, + "Name": "HoradricCacheA1Torment11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451277, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -622432514, + "Name": "HoradricCacheA1Torment12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451278, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -622432513, + "Name": "HoradricCacheA1Torment13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451279, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1448462770, + "Name": "HoradricCacheA2Torment2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394399, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1448462769, + "Name": "HoradricCacheA2Torment3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394400, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1448462768, + "Name": "HoradricCacheA2Torment4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394401, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1448462767, + "Name": "HoradricCacheA2Torment5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394402, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1448462766, + "Name": "HoradricCacheA2Torment6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394403, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1448462765, + "Name": "HoradricCacheA2Torment7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439957, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1448462764, + "Name": "HoradricCacheA2Torment8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439958, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1448462763, + "Name": "HoradricCacheA2Torment9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439959, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -554631139, + "Name": "HoradricCacheA2Torment10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439960, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -554631138, + "Name": "HoradricCacheA2Torment11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451280, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -554631137, + "Name": "HoradricCacheA2Torment12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451281, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -554631136, + "Name": "HoradricCacheA2Torment13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451282, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505849679, + "Name": "HoradricCacheA3Torment2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394404, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505849680, + "Name": "HoradricCacheA3Torment3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394405, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505849681, + "Name": "HoradricCacheA3Torment4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394406, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505849682, + "Name": "HoradricCacheA3Torment5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394407, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505849683, + "Name": "HoradricCacheA3Torment6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394408, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505849684, + "Name": "HoradricCacheA3Torment7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439961, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505849685, + "Name": "HoradricCacheA3Torment8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439962, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 505849686, + "Name": "HoradricCacheA3Torment9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439963, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -486829762, + "Name": "HoradricCacheA3Torment10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439964, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -486829761, + "Name": "HoradricCacheA3Torment11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451283, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -486829760, + "Name": "HoradricCacheA3Torment12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451284, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -486829759, + "Name": "HoradricCacheA3Torment13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451285, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1834805168, + "Name": "HoradricCacheA4Torment2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394435, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1834805167, + "Name": "HoradricCacheA4Torment3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394436, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1834805166, + "Name": "HoradricCacheA4Torment4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394437, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1834805165, + "Name": "HoradricCacheA4Torment5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394438, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1834805164, + "Name": "HoradricCacheA4Torment6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394439, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1834805163, + "Name": "HoradricCacheA4Torment7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439965, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1834805162, + "Name": "HoradricCacheA4Torment8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439967, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1834805161, + "Name": "HoradricCacheA4Torment9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439970, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -419028385, + "Name": "HoradricCacheA4Torment10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439974, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -419028384, + "Name": "HoradricCacheA4Torment11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451286, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -419028383, + "Name": "HoradricCacheA4Torment12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451287, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -419028382, + "Name": "HoradricCacheA4Torment13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451288, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 119507281, + "Name": "HoradricCacheA5Torment2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394450, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 119507282, + "Name": "HoradricCacheA5Torment3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394451, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 119507283, + "Name": "HoradricCacheA5Torment4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394452, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 119507284, + "Name": "HoradricCacheA5Torment5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394453, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 119507285, + "Name": "HoradricCacheA5Torment6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 394454, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 119507286, + "Name": "HoradricCacheA5Torment7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439976, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 119507287, + "Name": "HoradricCacheA5Torment8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439977, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 119507288, + "Name": "HoradricCacheA5Torment9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439978, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -351227008, + "Name": "HoradricCacheA5Torment10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 439979, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -351227007, + "Name": "HoradricCacheA5Torment11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451289, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -351227006, + "Name": "HoradricCacheA5Torment12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451290, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -351227005, + "Name": "HoradricCacheA5Torment13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360166, + "ItemTypesGBID": 1650316949, + "Flags": 3145824, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451291, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1712365860, + "Name": "Bonus_Act1_Bag_1-69", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 443716, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1780167237, + "Name": "Bonus_Act2_Bag_1-69", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 443717, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1847968614, + "Name": "Bonus_Act3_Bag_1-69", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 443718, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1915769991, + "Name": "Bonus_Act4_Bag_1-69", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 443719, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1983571368, + "Name": "Bonus_Act5_Bag_1-69", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 443721, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129273562, + "Name": "BonusAct1Bag", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437769, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -623013159, + "Name": "BonusAct1BagHard", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437778, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 53305714, + "Name": "BonusAct1BagExpert", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437781, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 339236390, + "Name": "BonusAct1BagMaster", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437782, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008929, + "Name": "BonusAct1BagT1", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437771, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008928, + "Name": "BonusAct1BagT2", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437772, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008927, + "Name": "BonusAct1BagT3", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437773, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008926, + "Name": "BonusAct1BagT4", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437774, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008925, + "Name": "BonusAct1BagT5", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437775, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008924, + "Name": "BonusAct1BagT6", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 437776, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008923, + "Name": "BonusAct1BagT7", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440014, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008922, + "Name": "BonusAct1BagT8", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440015, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -955008921, + "Name": "BonusAct1BagT9", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440016, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450523537, + "Name": "BonusAct1BagT10", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440017, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450523536, + "Name": "BonusAct1BagT11", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451292, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450523535, + "Name": "BonusAct1BagT12", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451293, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450523534, + "Name": "BonusAct1BagT13", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451294, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450523533, + "Name": "BonusAct1BagT14", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483095, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450523532, + "Name": "BonusAct1BagT15", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483096, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1450523531, + "Name": "BonusAct1BagT16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483097, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129309499, + "Name": "BonusAct2Bag", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440118, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -954243142, + "Name": "BonusAct2BagHard", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440124, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 121107091, + "Name": "BonusAct2BagExpert", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440123, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 407037767, + "Name": "BonusAct2BagMaster", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440125, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873536, + "Name": "BonusAct2BagT1", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440126, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873535, + "Name": "BonusAct2BagT2", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440128, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873534, + "Name": "BonusAct2BagT3", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440129, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873533, + "Name": "BonusAct2BagT4", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440130, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873532, + "Name": "BonusAct2BagT5", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440131, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873531, + "Name": "BonusAct2BagT6", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440132, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873530, + "Name": "BonusAct2BagT7", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440133, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873529, + "Name": "BonusAct2BagT8", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440134, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915873528, + "Name": "BonusAct2BagT9", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440135, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -159055568, + "Name": "BonusAct2BagT10", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440127, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -159055567, + "Name": "BonusAct2BagT11", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451295, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -159055566, + "Name": "BonusAct2BagT12", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451296, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -159055565, + "Name": "BonusAct2BagT13", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451297, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -159055564, + "Name": "BonusAct2BagT14", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483098, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -159055563, + "Name": "BonusAct2BagT15", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483099, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -159055562, + "Name": "BonusAct2BagT16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483100, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129345436, + "Name": "BonusAct3Bag", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440137, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1285473125, + "Name": "BonusAct3BagHard", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440139, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 188908468, + "Name": "BonusAct3BagExpert", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440138, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 474839144, + "Name": "BonusAct3BagMaster", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440140, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738143, + "Name": "BonusAct3BagT1", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440141, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738142, + "Name": "BonusAct3BagT2", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440143, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738141, + "Name": "BonusAct3BagT3", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440144, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738140, + "Name": "BonusAct3BagT4", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440145, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738139, + "Name": "BonusAct3BagT5", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440146, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738138, + "Name": "BonusAct3BagT6", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440147, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738137, + "Name": "BonusAct3BagT7", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440148, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738136, + "Name": "BonusAct3BagT8", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440149, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -876738135, + "Name": "BonusAct3BagT9", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440150, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132412401, + "Name": "BonusAct3BagT10", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440142, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132412402, + "Name": "BonusAct3BagT11", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451298, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132412403, + "Name": "BonusAct3BagT12", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451299, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132412404, + "Name": "BonusAct3BagT13", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451300, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132412405, + "Name": "BonusAct3BagT14", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483101, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132412406, + "Name": "BonusAct3BagT15", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483102, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1132412407, + "Name": "BonusAct3BagT16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483103, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129381373, + "Name": "BonusAct4Bag", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440151, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1616703108, + "Name": "BonusAct4BagHard", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440153, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 256709845, + "Name": "BonusAct4BagExpert", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440152, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 542640521, + "Name": "BonusAct4BagMaster", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440154, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602750, + "Name": "BonusAct4BagT1", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440155, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602749, + "Name": "BonusAct4BagT2", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440157, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602748, + "Name": "BonusAct4BagT3", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440158, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602747, + "Name": "BonusAct4BagT4", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440159, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602746, + "Name": "BonusAct4BagT5", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440160, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602745, + "Name": "BonusAct4BagT6", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440161, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602744, + "Name": "BonusAct4BagT7", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440162, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602743, + "Name": "BonusAct4BagT8", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440163, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -837602742, + "Name": "BonusAct4BagT9", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440164, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871086926, + "Name": "BonusAct4BagT10", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440156, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871086925, + "Name": "BonusAct4BagT11", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451301, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871086924, + "Name": "BonusAct4BagT12", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451302, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871086923, + "Name": "BonusAct4BagT13", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451303, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871086922, + "Name": "BonusAct4BagT14", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483104, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871086921, + "Name": "BonusAct4BagT15", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483105, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1871086920, + "Name": "BonusAct4BagT16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483106, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 129417310, + "Name": "BonusAct5Bag", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440165, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1947933091, + "Name": "BonusAct5BagHard", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440167, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 324511222, + "Name": "BonusAct5BagExpert", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440166, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 610441898, + "Name": "BonusAct5BagMaster", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440168, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467357, + "Name": "BonusAct5BagT1", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440169, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467356, + "Name": "BonusAct5BagT2", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440171, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467355, + "Name": "BonusAct5BagT3", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440172, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467354, + "Name": "BonusAct5BagT4", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440173, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467353, + "Name": "BonusAct5BagT5", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440174, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467352, + "Name": "BonusAct5BagT6", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440175, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467351, + "Name": "BonusAct5BagT7", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440176, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467350, + "Name": "BonusAct5BagT8", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440177, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -798467349, + "Name": "BonusAct5BagT9", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440178, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -579618957, + "Name": "BonusAct5BagT10", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 440170, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -579618956, + "Name": "BonusAct5BagT11", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451304, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -579618955, + "Name": "BonusAct5BagT12", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451305, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -579618954, + "Name": "BonusAct5BagT13", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 451306, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -579618953, + "Name": "BonusAct5BagT14", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483107, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -579618952, + "Name": "BonusAct5BagT15", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483108, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -579618951, + "Name": "BonusAct5BagT16", + "GBID": 0, + "PAD": 0, + "SNOActor": 361065, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483109, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -676920401, + "Name": "DoubleBountyBagAct1", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463522, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1778882002, + "Name": "DoubleBountyBagAct1Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463533, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -262446585, + "Name": "DoubleBountyBagAct1Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463534, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 23484091, + "Name": "DoubleBountyBagAct1Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463535, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061044, + "Name": "DoubleBountyBagAct1T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463536, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061045, + "Name": "DoubleBountyBagAct1T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463537, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061046, + "Name": "DoubleBountyBagAct1T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463538, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061047, + "Name": "DoubleBountyBagAct1T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463539, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061048, + "Name": "DoubleBountyBagAct1T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463540, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061049, + "Name": "DoubleBountyBagAct1T6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463541, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061050, + "Name": "DoubleBountyBagAct1T7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463542, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061051, + "Name": "DoubleBountyBagAct1T8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463543, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568061052, + "Name": "DoubleBountyBagAct1T9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463544, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206406948, + "Name": "DoubleBountyBagAct1T10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463545, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206406949, + "Name": "DoubleBountyBagAct1T11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463546, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206406950, + "Name": "DoubleBountyBagAct1T12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463547, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206406951, + "Name": "DoubleBountyBagAct1T13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463548, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206406952, + "Name": "DoubleBountyBagAct1T14", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483042, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206406953, + "Name": "DoubleBountyBagAct1T15", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483043, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206406954, + "Name": "DoubleBountyBagAct1T16", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483044, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -676920400, + "Name": "DoubleBountyBagAct2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463569, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1777696081, + "Name": "DoubleBountyBagAct2Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463570, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1029021384, + "Name": "DoubleBountyBagAct2Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463571, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1314952060, + "Name": "DoubleBountyBagAct2Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463572, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062133, + "Name": "DoubleBountyBagAct2T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463573, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062134, + "Name": "DoubleBountyBagAct2T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463574, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062135, + "Name": "DoubleBountyBagAct2T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463575, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062136, + "Name": "DoubleBountyBagAct2T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463576, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062137, + "Name": "DoubleBountyBagAct2T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463577, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062138, + "Name": "DoubleBountyBagAct2T6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463578, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062139, + "Name": "DoubleBountyBagAct2T7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463579, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062140, + "Name": "DoubleBountyBagAct2T8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463580, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568062141, + "Name": "DoubleBountyBagAct2T9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463581, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206442885, + "Name": "DoubleBountyBagAct2T10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463582, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206442886, + "Name": "DoubleBountyBagAct2T11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463583, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206442887, + "Name": "DoubleBountyBagAct2T12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463584, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206442888, + "Name": "DoubleBountyBagAct2T13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463585, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206442889, + "Name": "DoubleBountyBagAct2T14", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483045, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206442890, + "Name": "DoubleBountyBagAct2T15", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483046, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206442891, + "Name": "DoubleBountyBagAct2T16", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483047, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -676920399, + "Name": "DoubleBountyBagAct3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463586, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1776510160, + "Name": "DoubleBountyBagAct3Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463587, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1974477943, + "Name": "DoubleBountyBagAct3Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463588, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1688547267, + "Name": "DoubleBountyBagAct3Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463589, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063222, + "Name": "DoubleBountyBagAct3T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463590, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063223, + "Name": "DoubleBountyBagAct3T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463591, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063224, + "Name": "DoubleBountyBagAct3T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463592, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063225, + "Name": "DoubleBountyBagAct3T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463593, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063226, + "Name": "DoubleBountyBagAct3T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463594, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063227, + "Name": "DoubleBountyBagAct3T6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463595, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063228, + "Name": "DoubleBountyBagAct3T7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463596, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063229, + "Name": "DoubleBountyBagAct3T8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463597, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568063230, + "Name": "DoubleBountyBagAct3T9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463598, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206478822, + "Name": "DoubleBountyBagAct3T10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463599, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206478823, + "Name": "DoubleBountyBagAct3T11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463600, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206478824, + "Name": "DoubleBountyBagAct3T12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463601, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206478825, + "Name": "DoubleBountyBagAct3T13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463602, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206478826, + "Name": "DoubleBountyBagAct3T14", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483048, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206478827, + "Name": "DoubleBountyBagAct3T15", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483049, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206478828, + "Name": "DoubleBountyBagAct3T16", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483050, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -676920398, + "Name": "DoubleBountyBagAct4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463603, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1775324239, + "Name": "DoubleBountyBagAct4Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463604, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -683009974, + "Name": "DoubleBountyBagAct4Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463605, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -397079298, + "Name": "DoubleBountyBagAct4Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463606, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064311, + "Name": "DoubleBountyBagAct4T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463607, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064312, + "Name": "DoubleBountyBagAct4T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463608, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064313, + "Name": "DoubleBountyBagAct4T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463609, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064314, + "Name": "DoubleBountyBagAct4T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463610, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064315, + "Name": "DoubleBountyBagAct4T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463611, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064316, + "Name": "DoubleBountyBagAct4T6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463612, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064317, + "Name": "DoubleBountyBagAct4T7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463613, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064318, + "Name": "DoubleBountyBagAct4T8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463614, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568064319, + "Name": "DoubleBountyBagAct4T9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463615, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206514759, + "Name": "DoubleBountyBagAct4T10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463616, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206514760, + "Name": "DoubleBountyBagAct4T11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463617, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206514761, + "Name": "DoubleBountyBagAct4T12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463618, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206514762, + "Name": "DoubleBountyBagAct4T13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463619, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206514763, + "Name": "DoubleBountyBagAct4T14", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483051, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206514764, + "Name": "DoubleBountyBagAct4T15", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483052, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206514765, + "Name": "DoubleBountyBagAct4T16", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483053, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -676920397, + "Name": "DoubleBountyBagAct5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463620, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1774138318, + "Name": "DoubleBountyBagAct5Hard", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463621, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 608457995, + "Name": "DoubleBountyBagAct5Expert", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463622, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 894388671, + "Name": "DoubleBountyBagAct5Master", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463623, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065400, + "Name": "DoubleBountyBagAct5T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463624, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065401, + "Name": "DoubleBountyBagAct5T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463625, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065402, + "Name": "DoubleBountyBagAct5T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463626, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065403, + "Name": "DoubleBountyBagAct5T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463627, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065404, + "Name": "DoubleBountyBagAct5T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463628, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065405, + "Name": "DoubleBountyBagAct5T6", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463629, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065406, + "Name": "DoubleBountyBagAct5T7", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463630, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065407, + "Name": "DoubleBountyBagAct5T8", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463631, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065408, + "Name": "DoubleBountyBagAct5T9", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463632, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206550696, + "Name": "DoubleBountyBagAct5T10", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463633, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206550697, + "Name": "DoubleBountyBagAct5T11", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463634, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206550698, + "Name": "DoubleBountyBagAct5T12", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463635, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206550699, + "Name": "DoubleBountyBagAct5T13", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 463636, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206550700, + "Name": "DoubleBountyBagAct5T14", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483054, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206550701, + "Name": "DoubleBountyBagAct5T15", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483055, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 206550702, + "Name": "DoubleBountyBagAct5T16", + "GBID": 0, + "PAD": 0, + "SNOActor": 360183, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 483056, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1245628583, + "Name": "ChallengeRiftRewardBag", + "GBID": 0, + "PAD": 0, + "SNOActor": 475693, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": 464838, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 499246137, + "Name": "WorldBonusBag", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 944013240, + "Name": "WorldBonusBagHard", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1443037713, + "Name": "WorldBonusBagExpert", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1728968389, + "Name": "WorldBonusBagMaster", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800578, + "Name": "WorldBonusBagT1", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800577, + "Name": "WorldBonusBagT2", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800576, + "Name": "WorldBonusBagT3", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800575, + "Name": "WorldBonusBagT4", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800574, + "Name": "WorldBonusBagT5", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800573, + "Name": "WorldBonusBagT6", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800572, + "Name": "WorldBonusBagT7", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800571, + "Name": "WorldBonusBagT8", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1781800570, + "Name": "WorldBonusBagT9", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1330123118, + "Name": "WorldBonusBagT10", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1330123119, + "Name": "WorldBonusBagT11", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1330123120, + "Name": "WorldBonusBagT12", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1330123121, + "Name": "WorldBonusBagT13", + "GBID": 0, + "PAD": 0, + "SNOActor": 440889, + "ItemTypesGBID": 1650316949, + "Flags": 2097248, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -893553265, + "Name": "CraftingPlan_Smith_12_Legendary_Set_Borns_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + 1285016845, + -629368003, + -912931329, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1149398789, + 1057621227, + 1525158381, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1817283129, + "Name": "CraftingPlan_Smith_12_Legendary_Set_Cains_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1172072918, + 168420403, + -425764311, + -1155974231, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -372255527, + "Name": "CraftingPlan_Smith_12_Legendary_Set_CaptainCrimsons_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1433699158, + -564058518, + -1417600471, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 465478665, + "Name": "CraftingPlan_Smith_12_Legendary_Set_Aughild_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1109650836, + 2085798197, + -924082710, + -157976391, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 635079040, + "Name": "CraftingPlan_Smith_12_Legendary_Set_Asheara_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + 1003954480, + 454089639, + -685365795, + 596704446, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1420396298, + "Name": "CraftingPlan_Smith_12_Legendary_Set_Guardian_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + 1628324047, + 217356596, + -624021741, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1780461762, + "Name": "CraftingPlan_Smith_12_Legendary_Set_Demon_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1280459732, + 1293800316, + -1388454885, + 658228846, + 1015854615, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1019298165, + "Name": "CraftingPlan_Smith_12_Legendary_Set_Sage_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + -1967608494, + -648035063, + -1646400056, + -805021719, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -950439749, + "Name": "CraftingPlan_Smith_12_Legendary_Set_Hallowed_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 2820, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 11, + "RecipeToGrant": [ + 760062123, + -1124596634, + 926939228, + -39189250, + -1253510977, + 766407976, + 2056888744, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1598481168, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_CombatStaff_2H_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1435360408, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -792596224, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Shield_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1711686936, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1157585452, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Bow_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 9416940, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -128439853, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Mighty_2H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1836303115, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1778334260, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_CeremonialDagger_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1011793004, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1947457296, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Belt_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1803830568, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1839536383, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Axe_1H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1960572617, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 323005019, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Staff_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -121709709, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -784979716, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Mojo_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -928606444, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -379772714, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Gloves_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 2124510446, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1789282342, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_HandXBow_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1892102530, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 618839322, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Mace_2H_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -353619886, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2083974160, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Mighty_1H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -119231192, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -921172065, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Fist_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1064798793, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -342410260, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Orb_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 824592132, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2127848649, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_XBow_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -141101311, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -821854447, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Boots_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1266569175, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1928872139, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Dagger_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 575411021, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1571794442, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Sword_1H_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 573876270, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -500076291, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Axe_2H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -5217995, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1335365316, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Mace_1H_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1987142772, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1156651090, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Bow_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 10351302, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1598337420, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_CombatStaff_2H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1435504156, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2036515512, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Wand_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1892888784, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1355494236, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Quiver_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1148788924, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 511948749, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Helm_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 368322021, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -31875659, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Bracer_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1822559795, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1445074362, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Chest_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1889789090, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 758521776, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Pants_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 313807048, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1736587570, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Shoulder_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1596715850, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 7331608, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Bracer_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1783352528, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -380580121, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_Flail_1H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1765090591, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1422785846, + "Name": "CraftingPlan_Smith_12_Legendary_Unique_CruShield_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 3060, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -2081148926, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 802758808, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1995092533, + "Name": "ConsoleFriendGift", + "GBID": 0, + "PAD": 0, + "SNOActor": 362101, + "ItemTypesGBID": -1380314094, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 812609157, + "Name": "ConsoleAvengerGift", + "GBID": 0, + "PAD": 0, + "SNOActor": 364484, + "ItemTypesGBID": -1380314094, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -504497780, + "Name": "Consumable_Add_Sockets", + "GBID": 0, + "PAD": 0, + "SNOActor": 403611, + "ItemTypesGBID": -1380314094, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 417, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -495362148, + "Name": "CraftingReagent_Legendary_Unique_InfernalMachine_SkeletonKing_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364694, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 153555545, + "Name": "CraftingReagent_Legendary_Unique_InfernalMachine_Ghom_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364695, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1574653335, + "Name": "CraftingReagent_Legendary_Unique_InfernalMachine_SiegeBreaker_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364696, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 798007161, + "Name": "CraftingReagent_Legendary_Unique_InfernalMachine_Diablo_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364697, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1320, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1755423079, + "Name": "InfernalMachine_SkeletonKing_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366946, + "ItemTypesGBID": -1041196094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1756404650, + "Name": "InfernalMachine_Ghom_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366947, + "ItemTypesGBID": -1041196094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 314592404, + "Name": "InfernalMachine_SiegeBreaker_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366948, + "ItemTypesGBID": -1041196094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -384473930, + "Name": "InfernalMachine_Diablo_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366949, + "ItemTypesGBID": -1041196094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1929015119, + "Name": "CraftingPlan_Smith_12_Legendary_Set_InfernalMachine_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192598, + "ItemTypesGBID": -1669219336, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 1500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1321388809, + -112924506, + -1406188284, + -383626970, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1149398789, + 1057621227, + 1525158381, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -609173021, + "Name": "CraftingPlan_Jeweler_12_Legendary_Hellfire_Ring_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5000000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 731974898, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -425243735, + 753467135, + -216108886, + -549132826, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1499905445, + "Name": "CraftingPlan_Jeweler_12_Legendary_Hellfire_Amulet_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 192600, + "ItemTypesGBID": 371712870, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 5000000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1267849154, + 869451572, + 663245066, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -425243735, + 753467135, + -216108886, + -549132826, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 865253023, + "Name": "DemonOrgan_SkeletonKing_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364722, + "ItemTypesGBID": -49494186, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 721884764, + "Name": "DemonOrgan_Ghom_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364723, + "ItemTypesGBID": -49494186, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1359698790, + "Name": "DemonOrgan_SiegeBreaker_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364724, + "ItemTypesGBID": -49494186, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1233236028, + "Name": "DemonOrgan_Diablo_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364725, + "ItemTypesGBID": -49494186, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1410353836, + "Name": "CraftingReagent_Legendary_Unique_Axe_1H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364274, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -883795062, + "Name": "CraftingReagent_Legendary_Unique_Dagger_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364276, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 82926117, + "Name": "CraftingReagent_Legendary_Unique_Belt_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366343, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2073126086, + "Name": "CraftingReagent_Legendary_Unique_Boots_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366466, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1052408685, + "Name": "CraftingReagent_Legendary_Unique_Bracer_103_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366958, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1207560143, + "Name": "CraftingReagent_Legendary_Unique_Mace_1H_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 366996, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -343094235, + "Name": "CraftingReagent_Legendary_Unique_Mighty_1H_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 367002, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1649191029, + "Name": "CraftingReagent_Legendary_Unique_Sword_1H_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 367009, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 545000786, + "Name": "CraftingReagent_Legendary_Unique_Axe_2H_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 367026, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 746644495, + "Name": "CraftingReagent_Legendary_Unique_Mace_2H_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 367044, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1612440072, + "Name": "CraftingReagent_Legendary_Unique_Mighty_2H_012_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 367045, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 739105827, + "Name": "CraftingReagent_Legendary_Unique_Bow_010_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 367058, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 318094079, + "Name": "CraftingReagent_Legendary_Unique_CruShield_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 370589, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -457976708, + "Name": "CraftingReagent_Legendary_Unique_Flail_1H_101_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 370606, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 738171465, + "Name": "CraftingReagent_Legendary_Unique_Bow_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 370613, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1392837833, + "Name": "CraftingReagent_Legendary_Unique_CeremonialDagger_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 370620, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 263317470, + "Name": "CraftingReagent_Legendary_Unique_XBow_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 370646, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -910372127, + "Name": "CraftingReagent_Legendary_Unique_CombatStaff_2H_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 370672, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -910228379, + "Name": "CraftingReagent_Legendary_Unique_CombatStaff_2H_008_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371079, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 252480853, + "Name": "CraftingReagent_Legendary_Unique_Shield_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371080, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1076981744, + "Name": "CraftingReagent_Legendary_Unique_Staff_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371081, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1645456401, + "Name": "CraftingReagent_Legendary_Unique_Mojo_002_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371082, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 665304363, + "Name": "CraftingReagent_Legendary_Unique_Gloves_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371083, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1711885755, + "Name": "CraftingReagent_Legendary_Unique_HandXBow_006_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371084, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1509264052, + "Name": "CraftingReagent_Legendary_Unique_Fist_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371085, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1553346657, + "Name": "CraftingReagent_Legendary_Unique_Orb_004_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371086, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 171984333, + "Name": "CraftingReagent_Legendary_Unique_Wand_009_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371087, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -310417159, + "Name": "CraftingReagent_Legendary_Unique_Quiver_003_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371088, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1352582430, + "Name": "CraftingReagent_Legendary_Unique_Helm_011_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371089, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1013201418, + "Name": "CraftingReagent_Legendary_Unique_Bracer_001_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371090, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1449906171, + "Name": "CraftingReagent_Legendary_Unique_Chest_019_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371091, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -641464987, + "Name": "CraftingReagent_Legendary_Unique_Pants_005_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371092, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1659190983, + "Name": "CraftingReagent_Legendary_Unique_Shoulder_007_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 371093, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 488874382, + "Name": "CraftingReagent_Legendary_Set_Cains_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364281, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1186096787, + "Name": "CraftingReagent_Legendary_Set_Demon_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364290, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1414085648, + "Name": "CraftingReagent_Legendary_Set_Hallowed_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364305, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -449652114, + "Name": "CraftingReagent_Legendary_Set_CaptainCrimsons_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364975, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1884042197, + "Name": "CraftingReagent_Legendary_Set_Guardian_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364978, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1232331934, + "Name": "CraftingReagent_Legendary_Set_Aughild_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 364986, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1401932309, + "Name": "CraftingReagent_Legendary_Set_Asheara_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 365001, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1580155072, + "Name": "CraftingReagent_Legendary_Set_Sage_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 365010, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2073005284, + "Name": "CraftingReagent_Legendary_Set_Borns_X1", + "GBID": 0, + "PAD": 0, + "SNOActor": 365020, + "ItemTypesGBID": 3940472, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 1250000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 0, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 761917061, + "Name": "PowerGlobe_v2_x1", + "GBID": 0, + "PAD": 0, + "SNOActor": 365918, + "ItemTypesGBID": 1509903661, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2116605611, + "Name": "PowerGlobe_v2_x1_NoFlippy", + "GBID": 0, + "PAD": 0, + "SNOActor": 376114, + "ItemTypesGBID": 1509903661, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 125, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 121, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2117196750, + "Name": "p1_normal_rifts_Orb", + "GBID": 0, + "PAD": 0, + "SNOActor": 436807, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 450921158, + "Name": "p1_tiered_rifts_Orb", + "GBID": 0, + "PAD": 0, + "SNOActor": 401751, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -212343156, + "Name": "Challenge_Rifts_Orb", + "GBID": 0, + "PAD": 0, + "SNOActor": 475898, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1943920446, + "Name": "HostileModePointsGlyph", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 126166628, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 83273464, + "Name": "Cosmetic_Wings_Red", + "GBID": 0, + "PAD": 0, + "SNOActor": 409079, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 317125, + "EndEffect": 317124, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 317122, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1547509691, + "Name": "Cosmetic_Wings_Blue", + "GBID": 0, + "PAD": 0, + "SNOActor": 409078, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265601, + "EndEffect": 265600, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 198277, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1181814763, + "Name": "Cosmetic_Wings_Imperius", + "GBID": 0, + "PAD": 0, + "SNOActor": 409081, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 378344, + "EndEffect": 378343, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 378324, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 83256571, + "Name": "Cosmetic_Wings_Bug", + "GBID": 0, + "PAD": 0, + "SNOActor": 409080, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 265603, + "EndEffect": 265602, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 255322, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1980112302, + "Name": "Cosmetic_Wings_angel_flame_cyan", + "GBID": 0, + "PAD": 0, + "SNOActor": 429110, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429438, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 192612483, + "Name": "Cosmetic_Wings_angel_flame_orange", + "GBID": 0, + "PAD": 0, + "SNOActor": 429181, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429418, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -255419464, + "Name": "Cosmetic_Wings_angel_twoTone_gold", + "GBID": 0, + "PAD": 0, + "SNOActor": 429091, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429379, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2090323889, + "Name": "Cosmetic_Wings_angel_twoTone_greyscale", + "GBID": 0, + "PAD": 0, + "SNOActor": 429103, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429398, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1380644362, + "Name": "Cosmetic_Wings_angel_twoTone_purple", + "GBID": 0, + "PAD": 0, + "SNOActor": 429082, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429417, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -255602118, + "Name": "Cosmetic_Wings_angel_twoTone_blue", + "GBID": 0, + "PAD": 0, + "SNOActor": 437586, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 437592, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 83290772, + "Name": "Cosmetic_Wings_bat", + "GBID": 0, + "PAD": 0, + "SNOActor": 429863, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 431028, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1506648512, + "Name": "Cosmetic_Wings_demonic_blackBlue", + "GBID": 0, + "PAD": 0, + "SNOActor": 429085, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429123, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1506697955, + "Name": "Cosmetic_Wings_demonic_blackCyan", + "GBID": 0, + "PAD": 0, + "SNOActor": 429114, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429340, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1516133101, + "Name": "Cosmetic_Wings_demonic_blackRed", + "GBID": 0, + "PAD": 0, + "SNOActor": 429094, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429302, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 954223060, + "Name": "Cosmetic_Wings_demonic_blackYellow", + "GBID": 0, + "PAD": 0, + "SNOActor": 429087, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 429321, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -371626859, + "Name": "Cosmetic_Wings_bat_02", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 435203, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -371626858, + "Name": "Cosmetic_Wings_bat_03", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 435242, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -371626857, + "Name": "Cosmetic_Wings_bat_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 451108, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 436082, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -371626856, + "Name": "Cosmetic_Wings_bat_05", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 436200, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -371626855, + "Name": "Cosmetic_Wings_bat_06", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 436233, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -371626854, + "Name": "Cosmetic_Wings_bat_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 451106, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 437346, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1179292998, + "Name": "Cosmetic_Wings_Illidan", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 442388, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 917507933, + "Name": "Cosmetic_Wings_Andariel_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467006, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 442801, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -252301576, + "Name": "Cosmetic_Wings_Shiva_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 443364, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808390666, + "Name": "Cosmetic_Wings_bfly_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451110, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446803, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808390667, + "Name": "Cosmetic_Wings_bfly_02", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446835, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808390668, + "Name": "Cosmetic_Wings_bfly_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 451112, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446867, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808390669, + "Name": "Cosmetic_Wings_bfly_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 467008, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446901, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808390670, + "Name": "Cosmetic_Wings_bfly_05", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446932, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808390671, + "Name": "Cosmetic_Wings_bfly_06", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449274, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808390672, + "Name": "Cosmetic_Wings_bfly_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 451104, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447738, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1546363074, + "Name": "Cosmetic_Wings_bird", + "GBID": 0, + "PAD": 0, + "SNOActor": 451114, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446797, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 932157695, + "Name": "Cosmetic_Wings_bird_02", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447801, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899886614, + "Name": "Cosmetic_Wings_Seraphim_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467007, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 444468, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 899886615, + "Name": "Cosmetic_Wings_Seraphim_02", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447770, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 484578109, + "Name": "Cosmetic_Wings_Mercy", + "GBID": 0, + "PAD": 0, + "SNOActor": 444885, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 445989, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -34240396, + "Name": "Cosmetic_Wings_SetDngn_Mastery", + "GBID": 0, + "PAD": 0, + "SNOActor": 450019, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449608, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1237156881, + "Name": "Cosmetic_Wings_SetDngn_Basic", + "GBID": 0, + "PAD": 0, + "SNOActor": 450013, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449683, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1000537040, + "Name": "Console_Wings_SetDngn_Mastery", + "GBID": 0, + "PAD": 0, + "SNOActor": 450019, + "ItemTypesGBID": 294578015, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449608, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 327053421, + "Name": "Console_Wings_SetDngn_Basic", + "GBID": 0, + "PAD": 0, + "SNOActor": 450013, + "ItemTypesGBID": 294578015, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449683, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 436504212, + "Name": "P5_Cosmetic_Wings_bfly_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 451105, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447738, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1304179010, + "Name": "P5_Cosmetic_wings_bat_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 451107, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447738, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1814551909, + "Name": "P5_Cosmetic_Wings_bat_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 451109, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447738, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 436504206, + "Name": "P5_Cosmetic_Wings_bfly_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451111, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447738, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 436504208, + "Name": "P5_Cosmetic_Wings_bfly_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 451113, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447738, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 65389634, + "Name": "P5_Cosmetic_Wings_bird", + "GBID": 0, + "PAD": 0, + "SNOActor": 451115, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 447738, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2020405323, + "Name": "P6_Cosmetic_Wings_twitch", + "GBID": 0, + "PAD": 0, + "SNOActor": 474245, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 437346, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -237093383, + "Name": "P6_Cosmetic_Wings_Necro", + "GBID": 0, + "PAD": 0, + "SNOActor": 474321, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 465393, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 77475106, + "Name": "P6_Cosmetic_Wings_NecroAchievement", + "GBID": 0, + "PAD": 0, + "SNOActor": 474322, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 473057, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2116087770, + "Name": "P6_Cosmetic_Wings_GhostKerrigan", + "GBID": 0, + "PAD": 0, + "SNOActor": 476404, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 476382, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1689652464, + "Name": "P7_Cosmetic_Wings_Promo", + "GBID": 0, + "PAD": 0, + "SNOActor": 480340, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 480261, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1140988178, + "Name": "p7_Cosmetic_Wings_Diablo", + "GBID": 0, + "PAD": 0, + "SNOActor": 483091, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 483141, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 697879867, + "Name": "p7_Cosmetic_Wings_Galactic", + "GBID": 0, + "PAD": 0, + "SNOActor": 483457, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 483458, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 946648159, + "Name": "p67_Cosmetic_Wings_Lilith", + "GBID": 0, + "PAD": 0, + "SNOActor": 484101, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 483985, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -76063469, + "Name": "p7_Cosmetic_Wings_Baal", + "GBID": 0, + "PAD": 0, + "SNOActor": 484578, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 484429, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1632626468, + "Name": "p8_Cosmetic_Wings_Wanderer", + "GBID": 0, + "PAD": 0, + "SNOActor": 484883, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 484878, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 498359870, + "Name": "p81_Cosmetic_Wings_Mephisto", + "GBID": 0, + "PAD": 0, + "SNOActor": 485367, + "ItemTypesGBID": 294578015, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 485439, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1951170114, + "Name": "Consumable_Potion_XP_Buff_1D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409743, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1418, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1951170048, + "Name": "Consumable_Potion_XP_Buff_3D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409823, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1418, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1951169916, + "Name": "Consumable_Potion_XP_Buff_7D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409824, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1418, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 35897264, + "Name": "Consumable_Potion_XP_Buff_30D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409825, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1418, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1498206428, + "Name": "Consumable_Potion_Gold_Find_Buff_1D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409826, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1419, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1498206494, + "Name": "Consumable_Potion_Gold_Find_Buff_3D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409827, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1419, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1498206626, + "Name": "Consumable_Potion_Gold_Find_Buff_7D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409828, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1419, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2098793842, + "Name": "Consumable_Potion_Gold_Find_Buff_30D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409829, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1419, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2121785288, + "Name": "Consumable_Potion_Bloodshard_Buff_1D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409830, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1420, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2121785222, + "Name": "Consumable_Potion_Bloodshard_Buff_3D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409831, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1420, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2121785090, + "Name": "Consumable_Potion_Bloodshard_Buff_7D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409832, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1420, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1299436182, + "Name": "Consumable_Potion_Bloodshard_Buff_30D", + "GBID": 0, + "PAD": 0, + "SNOActor": 409833, + "ItemTypesGBID": -1380314094, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1420, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1046476254, + "Name": "Cosmetic_Pet_FallenHound_Skeletal", + "GBID": 0, + "PAD": 0, + "SNOActor": 410448, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": 1423, + "SNOParam": 0, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 360090, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1884025855, + "Name": "Cosmetic_Pet_thousandPounder", + "GBID": 0, + "PAD": 0, + "SNOActor": 430905, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430905, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -67281902, + "Name": "Cosmetic_Pet_teddyBear_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 430903, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430903, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -67281901, + "Name": "Cosmetic_Pet_teddyBear_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 430906, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430906, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -67281900, + "Name": "Cosmetic_Pet_teddyBear_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 430908, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430908, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -67281899, + "Name": "Cosmetic_Pet_teddyBear_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 451044, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 430910, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -67281898, + "Name": "Cosmetic_Pet_teddyBear_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 437119, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 437119, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1463579310, + "Name": "Cosmetic_Pet_fallenHound_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 433063, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 433063, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1463579311, + "Name": "Cosmetic_Pet_fallenHound_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 467015, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 437807, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1463579312, + "Name": "Cosmetic_Pet_fallenHound_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 439196, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 439196, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1463579313, + "Name": "Cosmetic_Pet_fallenHound_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 451013, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 439221, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1463579314, + "Name": "Cosmetic_Pet_fallenHound_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 439233, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 439233, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1463579315, + "Name": "Cosmetic_Pet_fallenHound_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 439237, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 439237, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -193139120, + "Name": "Cosmetic_Pet_ProtossProbe", + "GBID": 0, + "PAD": 0, + "SNOActor": 434428, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 434428, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -910235504, + "Name": "Cosmetic_Pet_crawlingHand_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 436532, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 436532, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -910235503, + "Name": "Cosmetic_Pet_crawlingHand_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 436534, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 436534, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -910235502, + "Name": "Cosmetic_Pet_crawlingHand_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 451049, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 436961, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 293595308, + "Name": "Cosmetic_Pet_goatman_melee_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 439337, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 439337, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 293595309, + "Name": "Cosmetic_Pet_goatman_melee_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 451017, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 441214, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1602702925, + "Name": "Cosmetic_Pet_jadeSerpent_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 441437, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 441437, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1602702924, + "Name": "Cosmetic_Pet_jadeSerpent_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 447847, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 447847, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1602702923, + "Name": "Cosmetic_Pet_jadeSerpent_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 467012, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 447848, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1672661624, + "Name": "Cosmetic_Pet_Murkgoblin_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 441208, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 441208, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1784909609, + "Name": "Cosmetic_Pet_Diablo", + "GBID": 0, + "PAD": 0, + "SNOActor": 451518, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 451518, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -253865605, + "Name": "Cosmetic_Pet_nephalem_golem_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467011, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 444316, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -660480297, + "Name": "Cosmetic_Pet_squire", + "GBID": 0, + "PAD": 0, + "SNOActor": 451040, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 445705, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1522179329, + "Name": "Cosmetic_Pet_wickerMan", + "GBID": 0, + "PAD": 0, + "SNOActor": 467009, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 445870, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -910235501, + "Name": "Cosmetic_Pet_crawlingHand_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 467014, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 446736, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 29027359, + "Name": "Cosmetic_Pet_VoodooDoll_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451046, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 447115, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -127619875, + "Name": "Cosmetic_Pet_FloatingSkull_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451025, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 447543, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -127619874, + "Name": "Cosmetic_Pet_FloatingSkull_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 451031, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 447673, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1643794844, + "Name": "Cosmetic_Pet_demonTrooper_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 447255, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 447255, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2071561363, + "Name": "Cosmetic_Pet_mimic_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451021, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 447641, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 308568413, + "Name": "Cosmetic_Pet_nightmare_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467010, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 449108, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 308568414, + "Name": "Cosmetic_Pet_nightmare_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 451023, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 449417, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -67281897, + "Name": "Cosmetic_Pet_teddyBear_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 467013, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 449221, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1918249931, + "Name": "Cosmetic_Pet_succubus_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451042, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 449844, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1303608993, + "Name": "Cosmetic_Pet_destroyer_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 449546, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 449546, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 747097929, + "Name": "Cosmetic_Pet_babysiege_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451009, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 449502, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1284908509, + "Name": "Cosmetic_Pet_ghost_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451015, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 450178, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 647365264, + "Name": "Cosmetic_Pet_hoodednightmare_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451019, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 450238, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1080354364, + "Name": "Cosmetic_Pet_gluttony_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451006, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 449573, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 111806277, + "Name": "Cosmetic_Pet_spider_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451036, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 450065, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -372591902, + "Name": "Cosmetic_Pet_thousandPounder_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 450347, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 450347, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 910697968, + "Name": "Cosmetic_Pet_cowking_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451051, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 450431, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1260835005, + "Name": "Cosmetic_Pet_bladedsoul_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451053, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 450952, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2035231812, + "Name": "Cosmetic_Pet_zombie_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451057, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 450898, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1632973127, + "Name": "Cosmetic_Pet_yeti_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451055, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 450908, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1937857582, + "Name": "Cosmetic_Pet_Diablo_Shadow", + "GBID": 0, + "PAD": 0, + "SNOActor": 472473, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 472473, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247329288, + "Name": "Cosmetic_Pet_Bloodling", + "GBID": 0, + "PAD": 0, + "SNOActor": 474372, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 466195, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1525134300, + "Name": "Cosmetic_Pet_TaldarimProbe", + "GBID": 0, + "PAD": 0, + "SNOActor": 472464, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 472464, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1770488980, + "Name": "Cosmetic_Pet_Murkromancer", + "GBID": 0, + "PAD": 0, + "SNOActor": 478541, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 478541, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1101106153, + "Name": "Cosmetic_Pet_Battlecruiser", + "GBID": 0, + "PAD": 0, + "SNOActor": 478868, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 478820, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -126970808, + "Name": "Cosmetic_Pet_Azmodan", + "GBID": 0, + "PAD": 0, + "SNOActor": 480339, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 480310, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1746360883, + "Name": "Cosmetic_Pet_Chicken", + "GBID": 0, + "PAD": 0, + "SNOActor": 480338, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 480297, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1883455958, + "Name": "Cosmetic_Pet_MalGanis", + "GBID": 0, + "PAD": 0, + "SNOActor": 483493, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 483492, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1027264858, + "Name": "Cosmetic_Pet_TreasureTyrael", + "GBID": 0, + "PAD": 0, + "SNOActor": 484042, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 484037, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2008023563, + "Name": "Cosmetic_Pet_Bat", + "GBID": 0, + "PAD": 0, + "SNOActor": 484192, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 484191, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 844904917, + "Name": "Cosmetic_Pet_landCrab", + "GBID": 0, + "PAD": 0, + "SNOActor": 484416, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 484325, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1547127769, + "Name": "Cosmetic_Pet_BookofCain", + "GBID": 0, + "PAD": 0, + "SNOActor": 484510, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 484503, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -787978026, + "Name": "Cosmetic_Pet_Wanderer", + "GBID": 0, + "PAD": 0, + "SNOActor": 484855, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 484777, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -816581113, + "Name": "Cosmetic_Pet_Mephisto", + "GBID": 0, + "PAD": 0, + "SNOActor": 485359, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 485352, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2088598010, + "Name": "Cosmetic_Pet_Lacuni", + "GBID": 0, + "PAD": 0, + "SNOActor": 485602, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 485601, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -894987647, + "Name": "Cosmetic_Portrait_Paragon_0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -23100959, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626000, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -894987646, + "Name": "Cosmetic_Portrait_Paragon_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -23100958, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626001, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530178802, + "Name": "Cosmetic_Portrait_Paragon_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623474, + "PortraitBanner": 995379406, + "PortraitFrame": -23100957, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626010, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530178835, + "Name": "Cosmetic_Portrait_Paragon_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623474, + "PortraitBanner": 995379406, + "PortraitFrame": -23100956, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626020, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530178868, + "Name": "Cosmetic_Portrait_Paragon_30", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623474, + "PortraitBanner": 995379406, + "PortraitFrame": -23100955, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626030, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530178901, + "Name": "Cosmetic_Portrait_Paragon_40", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101514, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379407, + "PortraitFrame": -23100954, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626040, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530178934, + "Name": "Cosmetic_Portrait_Paragon_50", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101514, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379407, + "PortraitFrame": -23100953, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626050, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530178967, + "Name": "Cosmetic_Portrait_Paragon_60", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101514, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379407, + "PortraitFrame": -23100952, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626060, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530179000, + "Name": "Cosmetic_Portrait_Paragon_70", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623472, + "PortraitBanner": 995379408, + "PortraitFrame": -23100951, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626070, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530179033, + "Name": "Cosmetic_Portrait_Paragon_80", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623472, + "PortraitBanner": 995379408, + "PortraitFrame": -23100950, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626080, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 530179066, + "Name": "Cosmetic_Portrait_Paragon_90", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623472, + "PortraitBanner": 995379408, + "PortraitFrame": -23100926, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626090, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 316031330, + "Name": "Cosmetic_Portrait_Paragon_100", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379409, + "PortraitFrame": -23100925, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1345626100, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 316032419, + "Name": "Cosmetic_Portrait_Paragon_200", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379410, + "PortraitFrame": -23100924, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1393318800, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 316033508, + "Name": "Cosmetic_Portrait_Paragon_300", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379410, + "PortraitFrame": -23100923, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1393318900, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 316034597, + "Name": "Cosmetic_Portrait_Paragon_400", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379410, + "PortraitFrame": -23100922, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1393319000, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 316035686, + "Name": "Cosmetic_Portrait_Paragon_500", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379410, + "PortraitFrame": -23100921, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1393319100, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 316036775, + "Name": "Cosmetic_Portrait_Paragon_600", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379410, + "PortraitFrame": -23100920, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1393319200, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 316037864, + "Name": "Cosmetic_Portrait_Paragon_700", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379410, + "PortraitFrame": -23100919, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1393319300, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 316038953, + "Name": "Cosmetic_Portrait_Paragon_800", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379410, + "PortraitFrame": -23100918, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 1393319400, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530283, + "Name": "Cosmetic_Portrait_Frame_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1560236586, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530282, + "Name": "Cosmetic_Portrait_Frame_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101514, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379406, + "PortraitFrame": -1560236585, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530281, + "Name": "Cosmetic_Portrait_Frame_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1560236584, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530280, + "Name": "Cosmetic_Portrait_Frame_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379406, + "PortraitFrame": -1560236583, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530279, + "Name": "Cosmetic_Portrait_Frame_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1560236582, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530278, + "Name": "Cosmetic_Portrait_Frame_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101514, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379406, + "PortraitFrame": -1560236581, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530277, + "Name": "Cosmetic_Portrait_Frame_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1560236580, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530276, + "Name": "Cosmetic_Portrait_Frame_08", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379406, + "PortraitFrame": -1560236579, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530275, + "Name": "Cosmetic_Portrait_Frame_09", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1560236578, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530251, + "Name": "Cosmetic_Portrait_Frame_10", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101514, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379406, + "PortraitFrame": -1560236554, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530250, + "Name": "Cosmetic_Portrait_Frame_11", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1560236553, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530249, + "Name": "Cosmetic_Portrait_Frame_12", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379406, + "PortraitFrame": -1560236552, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530248, + "Name": "Cosmetic_Portrait_Frame_13", + "GBID": 0, + "PAD": 0, + "SNOActor": 463040, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1560236551, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530247, + "Name": "Cosmetic_Portrait_Frame_14", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": -1560236550, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530246, + "Name": "Cosmetic_Portrait_Frame_15", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": -1560236549, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530245, + "Name": "Cosmetic_Portrait_Frame_16", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379405, + "PortraitFrame": 577329950, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530244, + "Name": "Cosmetic_Portrait_Frame_17", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623474, + "PortraitBanner": 995379406, + "PortraitFrame": 577365887, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530243, + "Name": "Cosmetic_Portrait_Frame_18", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379407, + "PortraitFrame": 577401824, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530242, + "Name": "Cosmetic_Portrait_Frame_19", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623472, + "PortraitBanner": 995379408, + "PortraitFrame": 577437761, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530218, + "Name": "Cosmetic_Portrait_Frame_20", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 578300249, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530217, + "Name": "Cosmetic_Portrait_Frame_21", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": 578336186, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -920530216, + "Name": "Cosmetic_Portrait_Frame_22", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": 1961633994, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216945058, + "Name": "Cosmetic_Portrait_Frame_S4_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 825403161, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216945057, + "Name": "Cosmetic_Portrait_Frame_S4_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 825439098, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216945056, + "Name": "Cosmetic_Portrait_Frame_S4_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 825475035, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216945055, + "Name": "Cosmetic_Portrait_Frame_S4_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 825510972, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216945054, + "Name": "Cosmetic_Portrait_Frame_S4_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 825546909, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216945053, + "Name": "Cosmetic_Portrait_Frame_S4_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 825582846, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216909121, + "Name": "Cosmetic_Portrait_Frame_S5_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 617615456, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216909120, + "Name": "Cosmetic_Portrait_Frame_S5_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 617615457, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216909119, + "Name": "Cosmetic_Portrait_Frame_S5_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 617615458, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216909118, + "Name": "Cosmetic_Portrait_Frame_S5_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 617615459, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216909117, + "Name": "Cosmetic_Portrait_Frame_S5_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 617615460, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1216909116, + "Name": "Cosmetic_Portrait_Frame_S5_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": 617615461, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1517887837, + "Name": "Cosmetic_Portrait_Frame_Bcon_2015", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623471, + "PortraitBanner": 995379408, + "PortraitFrame": -1743881502, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -781974250, + "Name": "Cosmetic_Portrait_Frame_HellStar_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1244130092, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -781974249, + "Name": "Cosmetic_Portrait_Frame_HellStar_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1244130091, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -781974248, + "Name": "Cosmetic_Portrait_Frame_HellStar_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1244130090, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -781974247, + "Name": "Cosmetic_Portrait_Frame_HellStar_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1244130089, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -781974246, + "Name": "Cosmetic_Portrait_Frame_HellStar_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1244130088, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -781974245, + "Name": "Cosmetic_Portrait_Frame_HellStar_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1244130087, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880744293, + "Name": "Cosmetic_Portrait_Frame_Adventure_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 855913800, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880744294, + "Name": "Cosmetic_Portrait_Frame_Adventure_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 855913801, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880744295, + "Name": "Cosmetic_Portrait_Frame_Adventure_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 855913802, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880744296, + "Name": "Cosmetic_Portrait_Frame_Adventure_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 855913803, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880744297, + "Name": "Cosmetic_Portrait_Frame_Adventure_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 855913804, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 880744298, + "Name": "Cosmetic_Portrait_Frame_Adventure_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 855913805, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 917644231, + "Name": "Cosmetic_Portrait_Frame_TalRasha_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 455488389, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 917644232, + "Name": "Cosmetic_Portrait_Frame_TalRasha_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 455488390, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 917644233, + "Name": "Cosmetic_Portrait_Frame_TalRasha_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 455488391, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 917644234, + "Name": "Cosmetic_Portrait_Frame_TalRasha_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 455488392, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 917644235, + "Name": "Cosmetic_Portrait_Frame_TalRasha_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 455488393, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 917644236, + "Name": "Cosmetic_Portrait_Frame_TalRasha_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 455488394, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 452315779, + "Name": "Cosmetic_Portrait_Frame_Soulstone_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1913887135, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 452315780, + "Name": "Cosmetic_Portrait_Frame_Soulstone_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1913887134, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 452315781, + "Name": "Cosmetic_Portrait_Frame_Soulstone_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1913887133, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 452315782, + "Name": "Cosmetic_Portrait_Frame_Soulstone_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1913887132, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 452315783, + "Name": "Cosmetic_Portrait_Frame_Soulstone_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1913887131, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 452315784, + "Name": "Cosmetic_Portrait_Frame_Soulstone_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1913887130, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1096821307, + "Name": "Cosmetic_PortraitFrame_AngelvsDemon_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1096820120, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1096821308, + "Name": "Cosmetic_PortraitFrame_AngelvsDemon_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1096820121, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1096821309, + "Name": "Cosmetic_PortraitFrame_AngelvsDemon_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1096820122, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1096821310, + "Name": "Cosmetic_PortraitFrame_AngelvsDemon_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1096820123, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1096821311, + "Name": "Cosmetic_PortraitFrame_AngelvsDemon_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1096820124, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1096821312, + "Name": "Cosmetic_PortraitFrame_AngelvsDemon_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1096820125, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239248250, + "Name": "Cosmetic_PortraitFrame_Imperius_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -239249437, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239248249, + "Name": "Cosmetic_PortraitFrame_Imperius_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -239249436, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239248248, + "Name": "Cosmetic_PortraitFrame_Imperius_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -239249435, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239248247, + "Name": "Cosmetic_PortraitFrame_Imperius_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -239249434, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239248246, + "Name": "Cosmetic_PortraitFrame_Imperius_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -239249433, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -239248245, + "Name": "Cosmetic_PortraitFrame_Imperius_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -239249432, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -283111273, + "Name": "Cosmetic_PortraitFrame_Barbarian", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -283111273, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -579483330, + "Name": "Cosmetic_PortraitFrame_Demonhunter", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101514, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -579483330, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1710520490, + "Name": "Cosmetic_PortraitFrame_Monk", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 1710520490, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1010524865, + "Name": "Cosmetic_PortraitFrame_witchdoctor", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -1010524865, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -874330234, + "Name": "Cosmetic_PortraitFrame_Wizard", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101514, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": -874330234, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1580520647, + "Name": "Cosmetic_PortraitFrame_BloodshardEncrusted_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379407, + "PortraitFrame": 1580519460, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1580520648, + "Name": "Cosmetic_PortraitFrame_BloodshardEncrusted_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379407, + "PortraitFrame": 1580519461, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1580520649, + "Name": "Cosmetic_PortraitFrame_BloodshardEncrusted_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379407, + "PortraitFrame": 1580519462, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1580520650, + "Name": "Cosmetic_PortraitFrame_BloodshardEncrusted_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379407, + "PortraitFrame": 1580519463, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1580520651, + "Name": "Cosmetic_PortraitFrame_BloodshardEncrusted_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379407, + "PortraitFrame": 1580519464, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1580520652, + "Name": "Cosmetic_PortraitFrame_BloodshardEncrusted_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 1580519465, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2064848082, + "Name": "Cosmetic_PortraitFrame_Crusader", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -2064848082, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1031615518, + "Name": "Cosmetic_PortraitFrame_TreasureGoblin_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1031614331, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1031615519, + "Name": "Cosmetic_PortraitFrame_TreasureGoblin_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1031614332, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1031615520, + "Name": "Cosmetic_PortraitFrame_TreasureGoblin_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1031614333, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1031615521, + "Name": "Cosmetic_PortraitFrame_TreasureGoblin_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1031614334, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1031615522, + "Name": "Cosmetic_PortraitFrame_TreasureGoblin_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1031614335, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1031615523, + "Name": "Cosmetic_PortraitFrame_TreasureGoblin_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101516, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379408, + "PortraitFrame": 1031614336, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1267019763, + "Name": "Cosmetic_PortraitFrame_PandemoniumFortress_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1267020950, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1267019762, + "Name": "Cosmetic_PortraitFrame_PandemoniumFortress_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1267020949, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1267019761, + "Name": "Cosmetic_PortraitFrame_PandemoniumFortress_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1267020948, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1267019760, + "Name": "Cosmetic_PortraitFrame_PandemoniumFortress_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1267020947, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1267019759, + "Name": "Cosmetic_PortraitFrame_PandemoniumFortress_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1267020946, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1267019758, + "Name": "Cosmetic_PortraitFrame_PandemoniumFortress_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": -1267020945, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1835086319, + "Name": "Cosmetic_PortraitFrame_Heaven_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1835085132, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1835086320, + "Name": "Cosmetic_PortraitFrame_Heaven_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1835085133, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1835086321, + "Name": "Cosmetic_PortraitFrame_Heaven_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1835085134, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1835086322, + "Name": "Cosmetic_PortraitFrame_Heaven_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1835085135, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1835086323, + "Name": "Cosmetic_PortraitFrame_Heaven_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1835085136, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1835086324, + "Name": "Cosmetic_PortraitFrame_Heaven_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379405, + "PortraitFrame": 1835085137, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 614498191, + "Name": "Cosmetic_PortraitFrame_EternalWoods_T0", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379405, + "PortraitFrame": 614497004, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 614498192, + "Name": "Cosmetic_PortraitFrame_EternalWoods_T1", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379405, + "PortraitFrame": 614497005, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 614498193, + "Name": "Cosmetic_PortraitFrame_EternalWoods_T2", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379405, + "PortraitFrame": 614497006, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 614498194, + "Name": "Cosmetic_PortraitFrame_EternalWoods_T3", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379405, + "PortraitFrame": 614497007, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 614498195, + "Name": "Cosmetic_PortraitFrame_EternalWoods_T4", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379405, + "PortraitFrame": 614497008, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 614498196, + "Name": "Cosmetic_PortraitFrame_EternalWoods_T5", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379405, + "PortraitFrame": 614497009, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2029694984, + "Name": "Cosmetic_PortraitFrame_Overwatch", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623475, + "PortraitBanner": 995379407, + "PortraitFrame": 2029694984, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1424437720, + "Name": "Cosmetic_PortraitFrame_RetroAngel", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1996533416, + "PortraitBanner": -1790610664, + "PortraitFrame": -1424437720, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421196524, + "Name": "Cosmetic_PortraitFrame_RetroDemon", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101515, + "PortraitHPBar": -1996533416, + "PortraitBanner": -1790610664, + "PortraitFrame": -1421196524, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -975724248, + "Name": "Cosmetic_PortraitFrame_Twitch", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": -1560236517, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 613416236, + "Name": "Cosmetic_PortraitFrame_Necro", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": -1560236518, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 51820574, + "Name": "Cosmetic_PortraitFrame_BFA", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": 51820574, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 409653395, + "Name": "Cosmetic_PortraitFrame_Triforce", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": 723974009, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622769561, + "Name": "Cosmetic_PortraitFrame_Valor", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": -1780282396, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 599183044, + "Name": "Cosmetic_PortraitFrame_Beast", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": -1780282372, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1241358510, + "Name": "Cosmetic_PortraitFrame_SteamGear", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": -1202547713, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1532762324, + "Name": "Cosmetic_PortraitFrame_LostCivilization", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": -1202547712, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -871209715, + "Name": "Cosmetic_PortraitFrame_Wanderer", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": -871209715, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 181803544, + "Name": "Cosmetic_PortraitFrame_ChoppingBlock", + "GBID": 0, + "PAD": 0, + "SNOActor": 410998, + "ItemTypesGBID": 1089435095, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 748101513, + "PortraitHPBar": -1158623473, + "PortraitBanner": 995379408, + "PortraitFrame": -1339244484, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1424, + "SNOParam": 1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1518799761, + "Name": "px_DevilsHand_TestGlobe", + "GBID": 0, + "PAD": 0, + "SNOActor": 411216, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1976056638, + "Name": "px_DevilsHand_TestGlobe_Dropped", + "GBID": 0, + "PAD": 0, + "SNOActor": 429784, + "ItemTypesGBID": 1883419642, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 0, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1712476583, + "Name": "Cosmetic_WoD_Flag", + "GBID": 0, + "PAD": 0, + "SNOActor": 427751, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 375410, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 177825848, + "Name": "cos_pennant_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 430771, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 177825849, + "Name": "cos_pennant_02", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 430810, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 177825850, + "Name": "cos_pennant_03", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 430843, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 177825851, + "Name": "cos_pennant_04", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 431332, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 177825852, + "Name": "cos_pennant_05", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 431644, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -146111830, + "Name": "cos_pennant_p2_Anniversary", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 434544, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1125311746, + "Name": "cos_pennant_p2_Heroes", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 434579, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1099972160, + "Name": "cos_pennant_bcon_2015", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 441385, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -83682124, + "Name": "cos_pennant_harvest_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451123, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 445419, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1597887752, + "Name": "P5_cos_Pennant_Harvest_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 451124, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 445419, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1170181788, + "Name": "cos_pennant_holloween_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467002, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 446254, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1513372701, + "Name": "cos_pennant_p4_setDngn_barb", + "GBID": 0, + "PAD": 0, + "SNOActor": 450059, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448876, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1347363835, + "Name": "cos_pennant_p4_setDngn_cdr", + "GBID": 0, + "PAD": 0, + "SNOActor": 450060, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448949, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1651127640, + "Name": "cos_pennant_p4_setDngn_dh", + "GBID": 0, + "PAD": 0, + "SNOActor": 450061, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448918, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1512962271, + "Name": "cos_pennant_p4_setDngn_monk", + "GBID": 0, + "PAD": 0, + "SNOActor": 450062, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448887, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1651128263, + "Name": "cos_pennant_p4_setDngn_wd", + "GBID": 0, + "PAD": 0, + "SNOActor": 450063, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448878, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1347341882, + "Name": "cos_pennant_p4_setDngn_wiz", + "GBID": 0, + "PAD": 0, + "SNOActor": 450064, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448877, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -856927322, + "Name": "cos_pennant_barbSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450031, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 441757, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1763530648, + "Name": "cos_pennant_cdrSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450028, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 440807, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1719465125, + "Name": "cos_pennant_dhSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450035, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 441892, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 984151268, + "Name": "cos_pennant_monkSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450034, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 441925, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 341445834, + "Name": "cos_pennant_wdSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450025, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 439533, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1170657495, + "Name": "cos_pennant_wizSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450020, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 440337, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1976581073, + "Name": "Console_pennant_p4_setDngn_barb", + "GBID": 0, + "PAD": 0, + "SNOActor": 450059, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448876, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2012155443, + "Name": "Console_pennant_p4_setDngn_cdr", + "GBID": 0, + "PAD": 0, + "SNOActor": 450060, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448949, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1232329158, + "Name": "Console_pennant_p4_setDngn_dh", + "GBID": 0, + "PAD": 0, + "SNOActor": 450061, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448918, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1976991503, + "Name": "Console_pennant_p4_setDngn_monk", + "GBID": 0, + "PAD": 0, + "SNOActor": 450062, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448887, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2012177396, + "Name": "Console_pennant_p4_setDngn_wiz", + "GBID": 0, + "PAD": 0, + "SNOActor": 450063, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448877, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1232329781, + "Name": "Console_pennant_p4_setDngn_wd", + "GBID": 0, + "PAD": 0, + "SNOActor": 450064, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 448878, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 301736532, + "Name": "Console_pennant_barbSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450031, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 441757, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1598269098, + "Name": "Console_pennant_cdrSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450028, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 440807, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1454156151, + "Name": "Console_pennant_dhSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450035, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 441892, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2142815122, + "Name": "Console_pennant_monkSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450034, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 441925, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 606754808, + "Name": "Console_pennant_wdSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450025, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 439533, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1005395945, + "Name": "Console_pennant_wizSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 450020, + "ItemTypesGBID": -1933735925, + "Flags": 1120, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 1, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 440337, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1515912043, + "Name": "cos_pennant_p4_bookofCain_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467003, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449455, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 132835883, + "Name": "cos_pennant_p4_BookOfTyrael_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 467005, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 449809, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 882296731, + "Name": "cos_pennant_p4_ZodiacRat_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450889, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1147374085, + "Name": "cos_pennant_p4_ZodiacOx_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450886, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -671406065, + "Name": "cos_pennant_p4_ZodiacTiger_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450893, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 64972456, + "Name": "cos_pennant_p4_ZodiacRabbit_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450888, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 344535727, + "Name": "cos_pennant_p4_ZodiacDragon_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450882, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1594032454, + "Name": "cos_pennant_p4_ZodiacSnake_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450892, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1386115307, + "Name": "cos_pennant_p4_ZodiacHorse_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450884, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1744055841, + "Name": "cos_pennant_p4_ZodiacGoat_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450891, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1501460615, + "Name": "cos_pennant_p4_ZodiacMonkey_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450885, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 322225282, + "Name": "cos_pennant_p4_ZodiacRooster_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450890, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 350536942, + "Name": "cos_pennant_p4_ZodiacDog_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450883, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 813046132, + "Name": "cos_pennant_p4_ZodiacPig_01", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 450887, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2144713138, + "Name": "Cosmetic_Pet_MooCow", + "GBID": 0, + "PAD": 0, + "SNOActor": 457825, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 457826, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -810103821, + "Name": "cos_pennant_p6_necro", + "GBID": 0, + "PAD": 0, + "SNOActor": 474248, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 472536, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1881262982, + "Name": "cos_pennant_NecroSigil_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 474348, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 462407, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1498532347, + "Name": "cos_pennant_p6_setDngn_necro", + "GBID": 0, + "PAD": 0, + "SNOActor": 474345, + "ItemTypesGBID": -1933735925, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": 377239, + "EndEffect": 377240, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": 461587, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1890227815, + "Name": "px_HoradricReagent_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 428719, + "ItemTypesGBID": 770629778, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1890227814, + "Name": "px_HoradricReagent_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 428721, + "ItemTypesGBID": 770629778, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1890227813, + "Name": "px_HoradricReagent_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 428722, + "ItemTypesGBID": 770629778, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1890227812, + "Name": "px_HoradricReagent_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 428723, + "ItemTypesGBID": 770629778, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1890227811, + "Name": "px_HoradricReagent_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 428724, + "ItemTypesGBID": 770629778, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 3, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1356992512, + "Name": "p2_ActBountyReagent_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 365020, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1356992513, + "Name": "p2_ActBountyReagent_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 364281, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1356992514, + "Name": "p2_ActBountyReagent_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 364290, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1356992515, + "Name": "p2_ActBountyReagent_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 364305, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1356992516, + "Name": "p2_ActBountyReagent_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 364975, + "ItemTypesGBID": -2019730316, + "Flags": 2144, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 2000000000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 1, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1829257724, + "Name": "p3_Gem_Convert_Ruby", + "GBID": 0, + "PAD": 0, + "SNOActor": 441582, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 238133544, + "Name": "p3_Gem_Convert_Topaz", + "GBID": 0, + "PAD": 0, + "SNOActor": 441583, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -653487244, + "Name": "p3_Gem_Convert_Emerald", + "GBID": 0, + "PAD": 0, + "SNOActor": 441584, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1237315529, + "Name": "p3_Gem_Convert_Amethyst", + "GBID": 0, + "PAD": 0, + "SNOActor": 441585, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2106404842, + "Name": "p3_Gem_Convert_Diamond", + "GBID": 0, + "PAD": 0, + "SNOActor": 441586, + "ItemTypesGBID": -2019730316, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5000, + "Cost": 500000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 587527566, + "Name": "GreenHillsOfStranglethorn01", + "GBID": 0, + "PAD": 0, + "SNOActor": 447426, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 587527567, + "Name": "GreenHillsOfStranglethorn02", + "GBID": 0, + "PAD": 0, + "SNOActor": 447427, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 587527568, + "Name": "GreenHillsOfStranglethorn03", + "GBID": 0, + "PAD": 0, + "SNOActor": 447428, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 587527569, + "Name": "GreenHillsOfStranglethorn04", + "GBID": 0, + "PAD": 0, + "SNOActor": 447429, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 587527570, + "Name": "GreenHillsOfStranglethorn05", + "GBID": 0, + "PAD": 0, + "SNOActor": 447430, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 587527571, + "Name": "GreenHillsOfStranglethorn06", + "GBID": 0, + "PAD": 0, + "SNOActor": 447431, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 976694891, + "Name": "Cosmetic_Pet_Butcher", + "GBID": 0, + "PAD": 0, + "SNOActor": 457160, + "ItemTypesGBID": -1269690848, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": 1422, + "SNOParam": 428398, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 1432, + "SNOParam": 456043, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 100, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 820924657, + "Name": "CraftingPlan_Smith_Smith_WirtsLeg", + "GBID": 0, + "PAD": 0, + "SNOActor": 253241, + "ItemTypesGBID": -1515023331, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + 1094335637, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + 1707055702, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1928505322, + "Name": "Charm_BandW", + "GBID": 0, + "PAD": 0, + "SNOActor": 454230, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -56146506, + "Name": "Charm_FastEnemy", + "GBID": 0, + "PAD": 0, + "SNOActor": 454231, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1656187487, + "Name": "Charm_Chicken", + "GBID": 0, + "PAD": 0, + "SNOActor": 454232, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1230872153, + "Name": "Charm_Molten", + "GBID": 0, + "PAD": 0, + "SNOActor": 454233, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1913800493, + "Name": "Charm_NoSet", + "GBID": 0, + "PAD": 0, + "SNOActor": 454234, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 836276743, + "Name": "Charm_Clumsy", + "GBID": 0, + "PAD": 0, + "SNOActor": 454235, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1262415110, + "Name": "P61_PTRVendor_Necromancer", + "GBID": 0, + "PAD": 0, + "SNOActor": 478515, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_PagesOfFate.gam b/src/GAM/Items_PagesOfFate.gam new file mode 100644 index 0000000..d4ee6d7 Binary files /dev/null and b/src/GAM/Items_PagesOfFate.gam differ diff --git a/src/GAM/Items_PagesOfFate.json b/src/GAM/Items_PagesOfFate.json new file mode 100644 index 0000000..cef6494 --- /dev/null +++ b/src/GAM/Items_PagesOfFate.json @@ -0,0 +1,310 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 245193, + "BalanceType": 2, + "I0": 1708504845, + "I1": 0 + }, + "Items": [ + { + "Hash": -44768141, + "Name": "PageOfFateA", + "GBID": 0, + "PAD": 0, + "SNOActor": 245219, + "ItemTypesGBID": 327230447, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 5, + "Cost": 1200, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 250, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": 245449, + "snoWorldPageOfFate1": 245391, + "snoWorldPageOfFate2": 245402, + "snoLevelAreaPageOfFatePortal": 109526, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_Quests.gam b/src/GAM/Items_Quests.gam new file mode 100644 index 0000000..9203085 Binary files /dev/null and b/src/GAM/Items_Quests.gam differ diff --git a/src/GAM/Items_Quests.json b/src/GAM/Items_Quests.json new file mode 100644 index 0000000..f26b9f9 --- /dev/null +++ b/src/GAM/Items_Quests.json @@ -0,0 +1,141136 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 130867, + "BalanceType": 2, + "I0": 1716279516, + "I1": 0 + }, + "Items": [ + { + "Hash": 1616046029, + "Name": "Orn_VaseB_caOut_Props", + "GBID": 0, + "PAD": 0, + "SNOActor": 6366, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1716270119, + "Name": "Orn_caOut_CrateA", + "GBID": 0, + "PAD": 0, + "SNOActor": 3637, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -414263135, + "Name": "Orn_caOut_Cauldron", + "GBID": 0, + "PAD": 0, + "SNOActor": 3630, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 198761811, + "Name": "Orn_caOut_VendorStandB", + "GBID": 0, + "PAD": 0, + "SNOActor": 3715, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1436343990, + "Name": "Orn_a2dun_Zolt_Centerpiece_A", + "GBID": 0, + "PAD": 0, + "SNOActor": 2975, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 871299343, + "Name": "ActIQ2_RatMageSkull", + "GBID": 0, + "PAD": 0, + "SNOActor": 4998, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1321141785, + "Name": "RiftTomePage", + "GBID": 0, + "PAD": 0, + "SNOActor": 5020, + "ItemTypesGBID": -938309842, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 758030166, + "Name": "ArcanaObscurum", + "GBID": 0, + "PAD": 0, + "SNOActor": 3197, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 69227606, + "Name": "BogusArcanaObscurum", + "GBID": 0, + "PAD": 0, + "SNOActor": 3422, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1716755910, + "Name": "CultistHead", + "GBID": 0, + "PAD": 0, + "SNOActor": 3899, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -744483821, + "Name": "GhostKnightBox", + "GBID": 0, + "PAD": 0, + "SNOActor": 4184, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 959408672, + "Name": "TriuneSmithsTools", + "GBID": 0, + "PAD": 0, + "SNOActor": 6032, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -111100892, + "Name": "ZakarumTotem", + "GBID": 0, + "PAD": 0, + "SNOActor": 6625, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2060267116, + "Name": "BrokenDoll", + "GBID": 0, + "PAD": 0, + "SNOActor": 3491, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1061919756, + "Name": "SwordOfJustice_Shard", + "GBID": 0, + "PAD": 0, + "SNOActor": 117927, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1041902386, + "Name": "SwordOfJustice_Blade", + "GBID": 0, + "PAD": 0, + "SNOActor": 117930, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 552387627, + "Name": "SwordOfJustice_Hilt", + "GBID": 0, + "PAD": 0, + "SNOActor": 117931, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1170982117, + "Name": "SwordOfJustice", + "GBID": 0, + "PAD": 0, + "SNOActor": 120391, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2142995682, + "Name": "DemonTrebuchetKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 166943, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1946703237, + "Name": "Queens_Prison_Journal", + "GBID": 0, + "PAD": 0, + "SNOActor": 107264, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1315141411, + "Name": "Lore_GoatmenHunter1", + "GBID": 0, + "PAD": 0, + "SNOActor": 108075, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1315141412, + "Name": "Lore_GoatmenHunter2", + "GBID": 0, + "PAD": 0, + "SNOActor": 108076, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1315141413, + "Name": "Lore_GoatmenHunter3", + "GBID": 0, + "PAD": 0, + "SNOActor": 108077, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -9368585, + "Name": "Lore_NephalemBonusTome", + "GBID": 0, + "PAD": 0, + "SNOActor": 111127, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -929350635, + "Name": "Lore_NephalemDrownedTemple", + "GBID": 0, + "PAD": 0, + "SNOActor": 119732, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 487594345, + "Name": "Lore_NephalemLastStand", + "GBID": 0, + "PAD": 0, + "SNOActor": 119731, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -214973518, + "Name": "Lore_NephalemWarriorsRest", + "GBID": 0, + "PAD": 0, + "SNOActor": 119736, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1044104937, + "Name": "Lore_NephalemCryptofAncients", + "GBID": 0, + "PAD": 0, + "SNOActor": 119738, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1584889204, + "Name": "TownAttackCellar_Maghda", + "GBID": 0, + "PAD": 0, + "SNOActor": 142840, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1064833648, + "Name": "Lore_MaghdaManor", + "GBID": 0, + "PAD": 0, + "SNOActor": 144184, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 83775029, + "Name": "BlizzconPrize", + "GBID": 0, + "PAD": 0, + "SNOActor": 218263, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1334632572, + "Name": "The Adventurer's Box", + "GBID": 0, + "PAD": 0, + "SNOActor": 4184, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1115663192, + "Name": "TorrQuestItem", + "GBID": 0, + "PAD": 0, + "SNOActor": 4184, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -286584688, + "Name": "QuestA1C2Inquisitor", + "GBID": 0, + "PAD": 0, + "SNOActor": 4968, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -163343908, + "Name": "ResonatingCrystal", + "GBID": 0, + "PAD": 0, + "SNOActor": 4184, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 257153863, + "Name": "AlbrechtsRemains", + "GBID": 0, + "PAD": 0, + "SNOActor": 5356, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -105685431, + "Name": "BlackSoulstone", + "GBID": 0, + "PAD": 0, + "SNOActor": 58999, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -874387762, + "Name": "FuadsJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 120565, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1337010162, + "Name": "WeddingRing", + "GBID": 0, + "PAD": 0, + "SNOActor": 98903, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1620182396, + "Name": "PurificationRelic", + "GBID": 0, + "PAD": 0, + "SNOActor": 119269, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1267096367, + "Name": "JewelerStash", + "GBID": 0, + "PAD": 0, + "SNOActor": 99634, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2076769229, + "Name": "JewelerBonusLoot", + "GBID": 0, + "PAD": 0, + "SNOActor": 159137, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -911218066, + "Name": "JewelerCraftingQuest", + "GBID": 0, + "PAD": 0, + "SNOActor": 168254, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 583850296, + "Name": "AngelicSeal", + "GBID": 0, + "PAD": 0, + "SNOActor": 114877, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 710181447, + "Name": "A2C2EmptyCage", + "GBID": 0, + "PAD": 0, + "SNOActor": 4184, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -419693385, + "Name": "A2C2SharkNecklace", + "GBID": 0, + "PAD": 0, + "SNOActor": 2942, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1670066139, + "Name": "A2C2SharkHide", + "GBID": 0, + "PAD": 0, + "SNOActor": 441, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 100, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1174205112, + "Name": "A2C2WantedPoster", + "GBID": 0, + "PAD": 0, + "SNOActor": 2953, + "ItemTypesGBID": -938309842, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1549871432, + "Name": "A2C2HusamHead", + "GBID": 0, + "PAD": 0, + "SNOActor": 3899, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1705409336, + "Name": "A2C2OreBag", + "GBID": 0, + "PAD": 0, + "SNOActor": 441, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 492207479, + "Name": "A2C2NecromancerCrystal", + "GBID": 0, + "PAD": 0, + "SNOActor": 2932, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -201242863, + "Name": "A2C2WantedPosterGood", + "GBID": 0, + "PAD": 0, + "SNOActor": 2953, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -832632349, + "Name": "A2C2RygnarIdol", + "GBID": 0, + "PAD": 0, + "SNOActor": 2990, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -680344601, + "Name": "ZK_Eye", + "GBID": 0, + "PAD": 0, + "SNOActor": 57390, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2130061428, + "Name": "ZK_Blood", + "GBID": 0, + "PAD": 0, + "SNOActor": 123171, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1572550438, + "Name": "ZK_Blood2", + "GBID": 0, + "PAD": 0, + "SNOActor": 137917, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -976535303, + "Name": "ZK_Eye2", + "GBID": 0, + "PAD": 0, + "SNOActor": 59454, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -976449354, + "Name": "ZK_Head", + "GBID": 0, + "PAD": 0, + "SNOActor": 57388, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1277547304, + "Name": "ZK_Head_1_Eye", + "GBID": 0, + "PAD": 0, + "SNOActor": 59455, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1041284695, + "Name": "ZK_Head_Both_Eyes", + "GBID": 0, + "PAD": 0, + "SNOActor": 59456, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -937714844, + "Name": "CultistCellarKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 4676, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1106798245, + "Name": "AqueductKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 58432, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2104026789, + "Name": "FacePuzzleSmallKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 207616, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1739010131, + "Name": "FacePuzzleLargeKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 207617, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -611280980, + "Name": "ZK_Head_Fake", + "GBID": 0, + "PAD": 0, + "SNOActor": 58615, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1009418946, + "Name": "ZKBox_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 58987, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1009418945, + "Name": "ZKBox_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 58988, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1009418944, + "Name": "ZKBox_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 58989, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254433969, + "Name": "HunterJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 60163, + "ItemTypesGBID": -938309842, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -188592605, + "Name": "Quest_Nephalem_Key_A", + "GBID": 0, + "PAD": 0, + "SNOActor": 61441, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -188592604, + "Name": "Quest_Nephalem_Key_B", + "GBID": 0, + "PAD": 0, + "SNOActor": 62989, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 632016607, + "Name": "Quest_a3dun_keep_quartermaster", + "GBID": 0, + "PAD": 0, + "SNOActor": 141262, + "ItemTypesGBID": 3940472, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1169297478, + "Name": "Quest_JailWarden_Key", + "GBID": 0, + "PAD": 0, + "SNOActor": 100931, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1789329228, + "Name": "Quest_GoatmanStaff", + "GBID": 0, + "PAD": 0, + "SNOActor": 123791, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254577299, + "Name": "Gharbadtheweak_Rezzer", + "GBID": 0, + "PAD": 0, + "SNOActor": 4184, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2045857974, + "Name": "SpiderQueenVenom", + "GBID": 0, + "PAD": 0, + "SNOActor": 90600, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1504436220, + "Name": "ZKNephalemTome", + "GBID": 0, + "PAD": 0, + "SNOActor": 61860, + "ItemTypesGBID": 3646475, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 268380124, + "Name": "Event_Tower_Of_Power_Book", + "GBID": 0, + "PAD": 0, + "SNOActor": 61860, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1997535124, + "Name": "Event_LeoricServant_Book", + "GBID": 0, + "PAD": 0, + "SNOActor": 61860, + "ItemTypesGBID": 3940472, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 743502187, + "Name": "SwordOfJustice_Tyrael", + "GBID": 0, + "PAD": 0, + "SNOActor": 182347, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 591781793, + "Name": "Event_TramauWard_BattleElixir", + "GBID": 0, + "PAD": 0, + "SNOActor": 151272, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 20, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 518493471, + "Name": "Event_WarPlans_MedicSupplies", + "GBID": 0, + "PAD": 0, + "SNOActor": 151596, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 20, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 782001559, + "Name": "Event_WarPlans_BattlefieldReports", + "GBID": 0, + "PAD": 0, + "SNOActor": 151271, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 20, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1064126826, + "Name": "CalldownGrenade", + "GBID": 0, + "PAD": 0, + "SNOActor": 91041, + "ItemTypesGBID": -1945202604, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 20, + "Cost": 85, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 262144, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 767914891, + "Name": "DrownedTemple_Shard", + "GBID": 0, + "PAD": 0, + "SNOActor": 4184, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 887714236, + "Name": "Lore_CainLetter", + "GBID": 0, + "PAD": 0, + "SNOActor": 132520, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -257091570, + "Name": "Lore_Festering_WarriorsRest", + "GBID": 0, + "PAD": 0, + "SNOActor": 136835, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1651730228, + "Name": "Lore_Festering_CryptOfTheAncients", + "GBID": 0, + "PAD": 0, + "SNOActor": 136835, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1975720945, + "Name": "Lore_Festering_DrownedTemple", + "GBID": 0, + "PAD": 0, + "SNOActor": 136835, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -307664173, + "Name": "Lore_PromisesOfFezuul", + "GBID": 0, + "PAD": 0, + "SNOActor": 140360, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 596055988, + "Name": "Lore_Bestiary_Khazra", + "GBID": 0, + "PAD": 0, + "SNOActor": 140328, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -782484308, + "Name": "Lore_Bestiary_KhazraShaman", + "GBID": 0, + "PAD": 0, + "SNOActor": 140465, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1928969240, + "Name": "Lore_Bestiary_Skeleton", + "GBID": 0, + "PAD": 0, + "SNOActor": 140469, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1347317402, + "Name": "Event_BastionsKeep_Officer", + "GBID": 0, + "PAD": 0, + "SNOActor": 148958, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 957808703, + "Name": "LeoricExperiment", + "GBID": 0, + "PAD": 0, + "SNOActor": 148628, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -961905625, + "Name": "SpiritJourney", + "GBID": 0, + "PAD": 0, + "SNOActor": 151115, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -374107370, + "Name": "A2_Oasis_KamyrsOrders", + "GBID": 0, + "PAD": 0, + "SNOActor": 153968, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1048823696, + "Name": "A2_Oasis_KamyrsOrdersTwo", + "GBID": 0, + "PAD": 0, + "SNOActor": 154003, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -341659389, + "Name": "A2_TemplarBackstory_3_Landus's_Diary", + "GBID": 0, + "PAD": 0, + "SNOActor": 153756, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1189011297, + "Name": "Lore_Dark_Zealot", + "GBID": 0, + "PAD": 0, + "SNOActor": 156436, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1754295366, + "Name": "Lore_Wortham_Priest1", + "GBID": 0, + "PAD": 0, + "SNOActor": 156448, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1754295365, + "Name": "Lore_Wortham_Priest2", + "GBID": 0, + "PAD": 0, + "SNOActor": 156452, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 194978865, + "Name": "Lore_Leoric_Caves1", + "GBID": 0, + "PAD": 0, + "SNOActor": 156454, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 194978866, + "Name": "Lore_Leoric_Caves2", + "GBID": 0, + "PAD": 0, + "SNOActor": 156456, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2033044249, + "Name": "Lore_Halls_of_Agony1", + "GBID": 0, + "PAD": 0, + "SNOActor": 156459, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2033044248, + "Name": "Lore_Halls_of_Agony2", + "GBID": 0, + "PAD": 0, + "SNOActor": 156461, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -523455061, + "Name": "Lore_Hermit_Caves", + "GBID": 0, + "PAD": 0, + "SNOActor": 156463, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1750463778, + "Name": "Lore_Belial_Desolate_Sands", + "GBID": 0, + "PAD": 0, + "SNOActor": 156466, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2026459667, + "Name": "Lore_Belial_Guards_Orders", + "GBID": 0, + "PAD": 0, + "SNOActor": 156469, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1872782338, + "Name": "Lore_Belial_Imperial_Guard", + "GBID": 0, + "PAD": 0, + "SNOActor": 156471, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1562221429, + "Name": "Lore_Belial_Maghda_Missive1", + "GBID": 0, + "PAD": 0, + "SNOActor": 156473, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1562221428, + "Name": "Lore_Belial_Maghda_Missive2", + "GBID": 0, + "PAD": 0, + "SNOActor": 156475, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2068103257, + "Name": "Lore_BelialOasis", + "GBID": 0, + "PAD": 0, + "SNOActor": 156477, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -310644525, + "Name": "Lore_BelialSewers", + "GBID": 0, + "PAD": 0, + "SNOActor": 156479, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 762726795, + "Name": "CommandersLog", + "GBID": 0, + "PAD": 0, + "SNOActor": 148995, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1794612507, + "Name": "Adria_ZoltunKulle2", + "GBID": 0, + "PAD": 0, + "SNOActor": 158013, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1655918527, + "Name": "Lazarus_Grimoire", + "GBID": 0, + "PAD": 0, + "SNOActor": 158649, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1136831502, + "Name": "A3_Battlefields_Supply_WagonDiaries", + "GBID": 0, + "PAD": 0, + "SNOActor": 148152, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 849288416, + "Name": "JewelerBackstory", + "GBID": 0, + "PAD": 0, + "SNOActor": 162671, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -326972454, + "Name": "Lore_CampCultist", + "GBID": 0, + "PAD": 0, + "SNOActor": 191720, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 137869641, + "Name": "A4_Hub_OldCouple_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 166778, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1346281779, + "Name": "Lore_UriktheSeer1", + "GBID": 0, + "PAD": 0, + "SNOActor": 166879, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1346281778, + "Name": "Lore_UriktheSeer2", + "GBID": 0, + "PAD": 0, + "SNOActor": 166897, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1346281777, + "Name": "Lore_UriktheSeer3", + "GBID": 0, + "PAD": 0, + "SNOActor": 166899, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1805951034, + "Name": "Lore_HuntersJournal1", + "GBID": 0, + "PAD": 0, + "SNOActor": 148675, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1805951033, + "Name": "Lore_HuntersJournal2", + "GBID": 0, + "PAD": 0, + "SNOActor": 148683, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1805951032, + "Name": "Lore_HuntersJournal3", + "GBID": 0, + "PAD": 0, + "SNOActor": 148689, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1805951031, + "Name": "Lore_HuntersJournal4", + "GBID": 0, + "PAD": 0, + "SNOActor": 148696, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1805951030, + "Name": "Lore_HuntersJournal5", + "GBID": 0, + "PAD": 0, + "SNOActor": 148704, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1805951029, + "Name": "Lore_HuntersJournal6", + "GBID": 0, + "PAD": 0, + "SNOActor": 148710, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -69352412, + "Name": "Oasis_LoveLetter", + "GBID": 0, + "PAD": 0, + "SNOActor": 169827, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2076851366, + "Name": "Lore_KulleJournal1", + "GBID": 0, + "PAD": 0, + "SNOActor": 148803, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2076851365, + "Name": "Lore_KulleJournal2", + "GBID": 0, + "PAD": 0, + "SNOActor": 148809, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2076851364, + "Name": "Lore_KulleJournal3", + "GBID": 0, + "PAD": 0, + "SNOActor": 148815, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2076851363, + "Name": "Lore_KulleJournal4", + "GBID": 0, + "PAD": 0, + "SNOActor": 169894, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2037293051, + "Name": "Dahlgur_Oasis", + "GBID": 0, + "PAD": 0, + "SNOActor": 169935, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1830584282, + "Name": "SecretMissive", + "GBID": 0, + "PAD": 0, + "SNOActor": 170010, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -434480145, + "Name": "ServantsDiary", + "GBID": 0, + "PAD": 0, + "SNOActor": 170067, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -515417416, + "Name": "MerchantsLedger", + "GBID": 0, + "PAD": 0, + "SNOActor": 170204, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1161401390, + "Name": "GuardCaptainJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 170227, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 649440346, + "Name": "OneLastEntry2", + "GBID": 0, + "PAD": 0, + "SNOActor": 170260, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -93736119, + "Name": "JewelerJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 171265, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 231166872, + "Name": "LoveLetter2", + "GBID": 0, + "PAD": 0, + "SNOActor": 171463, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -773622174, + "Name": "Lore_Bestiary_Beast", + "GBID": 0, + "PAD": 0, + "SNOActor": 177107, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2056599432, + "Name": "Lore_Bestiary_Berserker", + "GBID": 0, + "PAD": 0, + "SNOActor": 177109, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 182224206, + "Name": "Lore_Bestiary_Bloodhawk", + "GBID": 0, + "PAD": 0, + "SNOActor": 177111, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 553766744, + "Name": "Lore_Bestiary_CarrionBat", + "GBID": 0, + "PAD": 0, + "SNOActor": 177114, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1094869051, + "Name": "Lore_Bestiary_CarrionNest", + "GBID": 0, + "PAD": 0, + "SNOActor": 177116, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1269749787, + "Name": "Lore_Bestiary_Cultist", + "GBID": 0, + "PAD": 0, + "SNOActor": 177118, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1242678681, + "Name": "Lore_Bestiary_Rockworm", + "GBID": 0, + "PAD": 0, + "SNOActor": 177124, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 918889626, + "Name": "Lore_Bestiary_Spider", + "GBID": 0, + "PAD": 0, + "SNOActor": 177128, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1479088188, + "Name": "Lore_Bestiary_Spiderling", + "GBID": 0, + "PAD": 0, + "SNOActor": 177130, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1023626373, + "Name": "Lore_Bestiary_Vessel", + "GBID": 0, + "PAD": 0, + "SNOActor": 177132, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -480783202, + "Name": "Lore_Bestiary_Withermoth", + "GBID": 0, + "PAD": 0, + "SNOActor": 177134, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1850346105, + "Name": "LeahJournal_PartFour", + "GBID": 0, + "PAD": 0, + "SNOActor": 89525, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1850352619, + "Name": "LeahJournal_PartFive", + "GBID": 0, + "PAD": 0, + "SNOActor": 89526, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1617863425, + "Name": "LeahJournal_PartSix", + "GBID": 0, + "PAD": 0, + "SNOActor": 89527, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -916820948, + "Name": "LeahJournal_PartSeven", + "GBID": 0, + "PAD": 0, + "SNOActor": 89528, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1461740879, + "Name": "HailesJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 178352, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1611966089, + "Name": "KeepHistory", + "GBID": 0, + "PAD": 0, + "SNOActor": 178370, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1789111487, + "Name": "Lore_MorganJournal1", + "GBID": 0, + "PAD": 0, + "SNOActor": 190882, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 918996454, + "Name": "Lore_KhanDakab", + "GBID": 0, + "PAD": 0, + "SNOActor": 190500, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -602499783, + "Name": "Lore_CaliphateSardar", + "GBID": 0, + "PAD": 0, + "SNOActor": 190665, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1789111486, + "Name": "Lore_MorganJournal2", + "GBID": 0, + "PAD": 0, + "SNOActor": 191104, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2055812841, + "Name": "Lore_PortalRoulette", + "GBID": 0, + "PAD": 0, + "SNOActor": 178786, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 748461214, + "Name": "Lore_WaterPuzzle", + "GBID": 0, + "PAD": 0, + "SNOActor": 183707, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 200883601, + "Name": "Lore_Aqueducts1", + "GBID": 0, + "PAD": 0, + "SNOActor": 189653, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 200883602, + "Name": "Lore_Aqueducts2", + "GBID": 0, + "PAD": 0, + "SNOActor": 189655, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1152614769, + "Name": "Lore_CaldeumHistory1", + "GBID": 0, + "PAD": 0, + "SNOActor": 189658, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1152614768, + "Name": "Lore_CaldeumHistory2", + "GBID": 0, + "PAD": 0, + "SNOActor": 189661, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1152614767, + "Name": "Lore_CaldeumHistory3", + "GBID": 0, + "PAD": 0, + "SNOActor": 189665, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1152614766, + "Name": "Lore_CaldeumHistory4", + "GBID": 0, + "PAD": 0, + "SNOActor": 189667, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1152614765, + "Name": "Lore_CaldeumHistory5", + "GBID": 0, + "PAD": 0, + "SNOActor": 189670, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1152614764, + "Name": "Lore_CaldeumHistory6", + "GBID": 0, + "PAD": 0, + "SNOActor": 189672, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1961036140, + "Name": "Lore_DesolateSands1", + "GBID": 0, + "PAD": 0, + "SNOActor": 189678, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1961036141, + "Name": "Lore_DesolateSands2", + "GBID": 0, + "PAD": 0, + "SNOActor": 189680, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1961036142, + "Name": "Lore_DesolateSands3", + "GBID": 0, + "PAD": 0, + "SNOActor": 189688, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 959984170, + "Name": "Lore_EnchantressJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 189683, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -732450921, + "Name": "Lore_KidVendor", + "GBID": 0, + "PAD": 0, + "SNOActor": 189692, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299703, + "Name": "Lore_LeahJournal1", + "GBID": 0, + "PAD": 0, + "SNOActor": 189699, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299704, + "Name": "Lore_LeahJournal2", + "GBID": 0, + "PAD": 0, + "SNOActor": 189701, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299705, + "Name": "Lore_LeahJournal3", + "GBID": 0, + "PAD": 0, + "SNOActor": 189703, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299706, + "Name": "Lore_LeahJournal4", + "GBID": 0, + "PAD": 0, + "SNOActor": 189705, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299707, + "Name": "Lore_LeahJournal5", + "GBID": 0, + "PAD": 0, + "SNOActor": 189716, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1376504946, + "Name": "Lore_LordsofHell_Andariel", + "GBID": 0, + "PAD": 0, + "SNOActor": 189737, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 829524920, + "Name": "Lore_LordsofHell_Azmodan", + "GBID": 0, + "PAD": 0, + "SNOActor": 189765, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1966630910, + "Name": "Lore_LordsofHell_Baal", + "GBID": 0, + "PAD": 0, + "SNOActor": 189780, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1522480681, + "Name": "Lore_LordsofHell_Belial", + "GBID": 0, + "PAD": 0, + "SNOActor": 189782, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1439868775, + "Name": "Lore_LordsofHell_Diablo", + "GBID": 0, + "PAD": 0, + "SNOActor": 189784, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1425019405, + "Name": "Lore_LordsofHell_Duriel", + "GBID": 0, + "PAD": 0, + "SNOActor": 189786, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 483100218, + "Name": "Lore_LordsofHell_Intro", + "GBID": 0, + "PAD": 0, + "SNOActor": 189791, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 683006839, + "Name": "Lore_LordsofHell_Mephisto", + "GBID": 0, + "PAD": 0, + "SNOActor": 189807, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -79400789, + "Name": "Lore_AngirisCouncil", + "GBID": 0, + "PAD": 0, + "SNOActor": 193563, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -186580724, + "Name": "Lore_AngirisCouncil_Auriel", + "GBID": 0, + "PAD": 0, + "SNOActor": 193577, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1502173832, + "Name": "Lore_AngirisCouncil_Imperius", + "GBID": 0, + "PAD": 0, + "SNOActor": 193589, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1364925032, + "Name": "Lore_AngirisCouncil_Itherael", + "GBID": 0, + "PAD": 0, + "SNOActor": 193583, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1283961582, + "Name": "Lore_AngirisCouncil_Malthael", + "GBID": 0, + "PAD": 0, + "SNOActor": 193571, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 561726715, + "Name": "Lore_AngirisCouncil_Tyrael", + "GBID": 0, + "PAD": 0, + "SNOActor": 193595, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 719246046, + "Name": "Lore_Necromancer", + "GBID": 0, + "PAD": 0, + "SNOActor": 189823, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2060811819, + "Name": "Lore_OasisCellars_HutPrisoners", + "GBID": 0, + "PAD": 0, + "SNOActor": 189825, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -491733877, + "Name": "Lore_Poltahr", + "GBID": 0, + "PAD": 0, + "SNOActor": 189827, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -189743442, + "Name": "Lore_KalasPoem", + "GBID": 0, + "PAD": 0, + "SNOActor": 189872, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1789111485, + "Name": "Lore_MorganJournal3", + "GBID": 0, + "PAD": 0, + "SNOActor": 191138, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1787200733, + "Name": "Lore_Bestiary_Accursed", + "GBID": 0, + "PAD": 0, + "SNOActor": 196821, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -883139059, + "Name": "Lore_Bestiary_Deceivers", + "GBID": 0, + "PAD": 0, + "SNOActor": 196823, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 252238996, + "Name": "Lore_Bestiary_DuneDervish", + "GBID": 0, + "PAD": 0, + "SNOActor": 196826, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1711136796, + "Name": "Lore_Bestiary_DuneThresher", + "GBID": 0, + "PAD": 0, + "SNOActor": 196828, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1725483143, + "Name": "Lore_Bestiary_DustImp", + "GBID": 0, + "PAD": 0, + "SNOActor": 196833, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 196306580, + "Name": "Lore_Bestiary_ElectricEel", + "GBID": 0, + "PAD": 0, + "SNOActor": 196835, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1408697973, + "Name": "Lore_Bestiary_FallenGrunt", + "GBID": 0, + "PAD": 0, + "SNOActor": 196838, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1255185707, + "Name": "Lore_Bestiary_FallenLunatic", + "GBID": 0, + "PAD": 0, + "SNOActor": 196840, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -300561987, + "Name": "Lore_Bestiary_FallenShaman", + "GBID": 0, + "PAD": 0, + "SNOActor": 196842, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 626956239, + "Name": "Lore_Bestiary_Lacuni", + "GBID": 0, + "PAD": 0, + "SNOActor": 196844, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -881951768, + "Name": "Lore_Bestiary_SandDweller", + "GBID": 0, + "PAD": 0, + "SNOActor": 196846, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2053568364, + "Name": "Lore_Bestiary_SandWasp", + "GBID": 0, + "PAD": 0, + "SNOActor": 196848, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 675234003, + "Name": "Lore_Bestiary_SkeletalGuardian", + "GBID": 0, + "PAD": 0, + "SNOActor": 196850, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 964201632, + "Name": "Lore_Bestiary_StingingSwarm", + "GBID": 0, + "PAD": 0, + "SNOActor": 196852, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1810077952, + "Name": "LeoricsJournal4", + "GBID": 0, + "PAD": 0, + "SNOActor": 4586, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1810077953, + "Name": "LeoricsJournal5", + "GBID": 0, + "PAD": 0, + "SNOActor": 4587, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 290410546, + "Name": "Scoundrel_Journal_New", + "GBID": 0, + "PAD": 0, + "SNOActor": 158671, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1553914575, + "Name": "Event_PortalRoulette_Key", + "GBID": 0, + "PAD": 0, + "SNOActor": 4438, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1715731799, + "Name": "Lore_MisguidedFarmer", + "GBID": 0, + "PAD": 0, + "SNOActor": 202542, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 793334147, + "Name": "Kingsport_Bill", + "GBID": 0, + "PAD": 0, + "SNOActor": 142059, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 542502, + "Name": "Lore_ProudWife", + "GBID": 0, + "PAD": 0, + "SNOActor": 204726, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 541859470, + "Name": "Lore_AzmodansOrders1", + "GBID": 0, + "PAD": 0, + "SNOActor": 204034, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 541859471, + "Name": "Lore_AzmodansOrders2", + "GBID": 0, + "PAD": 0, + "SNOActor": 204818, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 541859472, + "Name": "Lore_AzmodansOrders3", + "GBID": 0, + "PAD": 0, + "SNOActor": 204821, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 541859473, + "Name": "Lore_AzmodansOrders4", + "GBID": 0, + "PAD": 0, + "SNOActor": 204823, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 541859474, + "Name": "Lore_AzmodansOrders5", + "GBID": 0, + "PAD": 0, + "SNOActor": 204825, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 541859475, + "Name": "Lore_AzmodansOrders6", + "GBID": 0, + "PAD": 0, + "SNOActor": 204827, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 903073409, + "Name": "Lore_FalloftheBarbs1", + "GBID": 0, + "PAD": 0, + "SNOActor": 204829, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 903073410, + "Name": "Lore_FalloftheBarbs2", + "GBID": 0, + "PAD": 0, + "SNOActor": 204832, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 903073411, + "Name": "Lore_FalloftheBarbs3", + "GBID": 0, + "PAD": 0, + "SNOActor": 204840, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 903073412, + "Name": "Lore_FalloftheBarbs4", + "GBID": 0, + "PAD": 0, + "SNOActor": 204847, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 903073413, + "Name": "Lore_FalloftheBarbs5", + "GBID": 0, + "PAD": 0, + "SNOActor": 204849, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1571932012, + "Name": "Lore_GluttonysLog", + "GBID": 0, + "PAD": 0, + "SNOActor": 204851, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299708, + "Name": "Lore_LeahJournal6", + "GBID": 0, + "PAD": 0, + "SNOActor": 204854, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299709, + "Name": "Lore_LeahJournal7", + "GBID": 0, + "PAD": 0, + "SNOActor": 204860, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299710, + "Name": "Lore_LeahJournal8", + "GBID": 0, + "PAD": 0, + "SNOActor": 204876, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 860299711, + "Name": "Lore_LeahJournal9", + "GBID": 0, + "PAD": 0, + "SNOActor": 204879, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 180905793, + "Name": "Lore_Bestiary_BloodClan", + "GBID": 0, + "PAD": 0, + "SNOActor": 204635, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1648356061, + "Name": "Lore_Bestiary_ColossalGolgor", + "GBID": 0, + "PAD": 0, + "SNOActor": 204637, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2072638984, + "Name": "Lore_Bestiary_DemonFlyer", + "GBID": 0, + "PAD": 0, + "SNOActor": 204639, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2019255912, + "Name": "Lore_Bestiary_DemonicHellBearer", + "GBID": 0, + "PAD": 0, + "SNOActor": 204641, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2070041141, + "Name": "Lore_Bestiary_DemonicTremor", + "GBID": 0, + "PAD": 0, + "SNOActor": 204643, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -924947951, + "Name": "Lore_Bestiary_DemonTrooper", + "GBID": 0, + "PAD": 0, + "SNOActor": 204645, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2024331556, + "Name": "Lore_Bestiary_HeraldofPestilence", + "GBID": 0, + "PAD": 0, + "SNOActor": 204647, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 929234885, + "Name": "Lore_Bestiary_HulkingPhasebeast", + "GBID": 0, + "PAD": 0, + "SNOActor": 204649, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -760199390, + "Name": "Lore_Bestiary_Morlu", + "GBID": 0, + "PAD": 0, + "SNOActor": 204651, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 903065450, + "Name": "Lore_Bestiary_ShadowVermin", + "GBID": 0, + "PAD": 0, + "SNOActor": 204653, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -553794116, + "Name": "Lore_Bestiary_Siegebreaker", + "GBID": 0, + "PAD": 0, + "SNOActor": 204655, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2125478648, + "Name": "Lore_Bestiary_SoulRipper", + "GBID": 0, + "PAD": 0, + "SNOActor": 204657, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1870358560, + "Name": "Lore_Bestiary_Succubus", + "GBID": 0, + "PAD": 0, + "SNOActor": 204659, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -967366047, + "Name": "Lore_Bestiary_TormentedStinger", + "GBID": 0, + "PAD": 0, + "SNOActor": 204661, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1148719938, + "Name": "Lore_Butcher", + "GBID": 0, + "PAD": 0, + "SNOActor": 211557, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -679067788, + "Name": "Lore_CemeteryCrypts", + "GBID": 0, + "PAD": 0, + "SNOActor": 211559, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1641318506, + "Name": "Lore_FieldsofMisery", + "GBID": 0, + "PAD": 0, + "SNOActor": 211563, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1942227697, + "Name": "Lore_NewTristram", + "GBID": 0, + "PAD": 0, + "SNOActor": 211568, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2008702493, + "Name": "Lore_Highlands", + "GBID": 0, + "PAD": 0, + "SNOActor": 211566, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -374262177, + "Name": "Lore_SkeletonKing", + "GBID": 0, + "PAD": 0, + "SNOActor": 211571, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -902210058, + "Name": "Lore_SpiderQueen", + "GBID": 0, + "PAD": 0, + "SNOActor": 211575, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1157788481, + "Name": "Lore_Bestiary_BileCrawler", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1553314184, + "Name": "Lore_Cydaea", + "GBID": 0, + "PAD": 0, + "SNOActor": 211583, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1063567164, + "Name": "Lore_Ghom", + "GBID": 0, + "PAD": 0, + "SNOActor": 211585, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1380676798, + "Name": "Lore_Bestiary_ArmoredDestroyer", + "GBID": 0, + "PAD": 0, + "SNOActor": 211588, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 676069188, + "Name": "Lore_Bestiary_EnslavedNightmare", + "GBID": 0, + "PAD": 0, + "SNOActor": 211590, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 666404978, + "Name": "Lore_Bestiary_Mallet", + "GBID": 0, + "PAD": 0, + "SNOActor": 211592, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 233634880, + "Name": "Lore_Bestiary_Megademon", + "GBID": 0, + "PAD": 0, + "SNOActor": 211594, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -49823792, + "Name": "Lore_Bestiary_MinionofTerror", + "GBID": 0, + "PAD": 0, + "SNOActor": 211596, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1792760441, + "Name": "Lore_Bestiary_Subjugator", + "GBID": 0, + "PAD": 0, + "SNOActor": 211598, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1547233725, + "Name": "Lore_Inarius1", + "GBID": 0, + "PAD": 0, + "SNOActor": 211600, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1547233726, + "Name": "Lore_Inarius2", + "GBID": 0, + "PAD": 0, + "SNOActor": 211602, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1547233727, + "Name": "Lore_Inarius3", + "GBID": 0, + "PAD": 0, + "SNOActor": 211604, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1547233728, + "Name": "Lore_Inarius4", + "GBID": 0, + "PAD": 0, + "SNOActor": 211606, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 741002998, + "Name": "Lore_Izual", + "GBID": 0, + "PAD": 0, + "SNOActor": 211608, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1177807980, + "Name": "Lore_Nephalem1", + "GBID": 0, + "PAD": 0, + "SNOActor": 211610, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1177807981, + "Name": "Lore_Nephalem2", + "GBID": 0, + "PAD": 0, + "SNOActor": 211612, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1177807982, + "Name": "Lore_Nephalem3", + "GBID": 0, + "PAD": 0, + "SNOActor": 211614, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -671684023, + "Name": "Lore_Rakanoth", + "GBID": 0, + "PAD": 0, + "SNOActor": 211616, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 454709126, + "Name": "Lore_x1_Bog_CatacombCellar_NephalemMiser", + "GBID": 0, + "PAD": 0, + "SNOActor": 246418, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1574760986, + "Name": "Lore_x1_Bog_LastAncient", + "GBID": 0, + "PAD": 0, + "SNOActor": 247315, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -112408162, + "Name": "Lore_x1_BogCave_Deserter1", + "GBID": 0, + "PAD": 0, + "SNOActor": 247844, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -112408161, + "Name": "Lore_x1_BogCave_Deserter2", + "GBID": 0, + "PAD": 0, + "SNOActor": 247853, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -112408160, + "Name": "Lore_x1_BogCave_Deserter3", + "GBID": 0, + "PAD": 0, + "SNOActor": 247861, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -112408159, + "Name": "Lore_x1_BogCave_Deserter4", + "GBID": 0, + "PAD": 0, + "SNOActor": 247868, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -112408158, + "Name": "Lore_x1_BogCave_Deserter5", + "GBID": 0, + "PAD": 0, + "SNOActor": 247874, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 218384735, + "Name": "Lore_x1_TemplarMaester", + "GBID": 0, + "PAD": 0, + "SNOActor": 248899, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -702076017, + "Name": "Lore_x1_MysticIntro1", + "GBID": 0, + "PAD": 0, + "SNOActor": 249248, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -702076016, + "Name": "Lore_x1_MysticIntro2", + "GBID": 0, + "PAD": 0, + "SNOActor": 249254, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -652715053, + "Name": "Lore_X1_DoomedWoman", + "GBID": 0, + "PAD": 0, + "SNOActor": 280034, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2126015494, + "Name": "Lore_X1_CellarMadman", + "GBID": 0, + "PAD": 0, + "SNOActor": 282398, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1282912281, + "Name": "Lore_Catacombs_NephDefenseSystem", + "GBID": 0, + "PAD": 0, + "SNOActor": 258104, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 581648639, + "Name": "x1_WestM_Food", + "GBID": 0, + "PAD": 0, + "SNOActor": 252178, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1300696671, + "Name": "x1_Bog_Lore_AdriaDead", + "GBID": 0, + "PAD": 0, + "SNOActor": 273712, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1062169977, + "Name": "x1_Bog_Lore_AdriaNewHost", + "GBID": 0, + "PAD": 0, + "SNOActor": 287788, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1300984171, + "Name": "x1_Bog_Lore_AdriaLeah", + "GBID": 0, + "PAD": 0, + "SNOActor": 287801, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1361182818, + "Name": "x1_Bog_Lore_AdriaLosingControl", + "GBID": 0, + "PAD": 0, + "SNOActor": 287802, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -437571927, + "Name": "x1_Bog_Lore_AdriaEmptiness", + "GBID": 0, + "PAD": 0, + "SNOActor": 287864, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -12068290, + "Name": "x1_Bog_Lore_AdriaPower", + "GBID": 0, + "PAD": 0, + "SNOActor": 287865, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 303568773, + "Name": "x1_Bog_Lore_AdriaBetrayal", + "GBID": 0, + "PAD": 0, + "SNOActor": 287863, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -28187233, + "Name": "x1_Bog_Lore_AdriaPurpose", + "GBID": 0, + "PAD": 0, + "SNOActor": 287866, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -27751851, + "Name": "x1_Bog_Lore_AdriaChild", + "GBID": 0, + "PAD": 0, + "SNOActor": 292078, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1300768559, + "Name": "x1_Bog_Lore_AdriaFear", + "GBID": 0, + "PAD": 0, + "SNOActor": 292111, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -806315253, + "Name": "x1_Bog_Lore_AdriaFather", + "GBID": 0, + "PAD": 0, + "SNOActor": 292118, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -163946822, + "Name": "x1_Bog_Lore_AdriaVoices", + "GBID": 0, + "PAD": 0, + "SNOActor": 292125, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -249070054, + "Name": "x1_Bog_Lore_AdriaMeeting", + "GBID": 0, + "PAD": 0, + "SNOActor": 292136, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1300773463, + "Name": "x1_Bog_Lore_AdriaFire", + "GBID": 0, + "PAD": 0, + "SNOActor": 302679, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 48919863, + "Name": "x1_Bog_Lore_AdriaMurderer", + "GBID": 0, + "PAD": 0, + "SNOActor": 302694, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -3985808, + "Name": "x1_Bog_Lore_AdriaWitch", + "GBID": 0, + "PAD": 0, + "SNOActor": 302695, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -30093554, + "Name": "x1_Bog_Lore_AdriaAidan", + "GBID": 0, + "PAD": 0, + "SNOActor": 302693, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215304, + "Name": "x1_Bog_Lore_RakkisHistory01", + "GBID": 0, + "PAD": 0, + "SNOActor": 287831, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215305, + "Name": "x1_Bog_Lore_RakkisHistory02", + "GBID": 0, + "PAD": 0, + "SNOActor": 287832, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215306, + "Name": "x1_Bog_Lore_RakkisHistory03", + "GBID": 0, + "PAD": 0, + "SNOActor": 287833, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215307, + "Name": "x1_Bog_Lore_RakkisHistory04", + "GBID": 0, + "PAD": 0, + "SNOActor": 287834, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215308, + "Name": "x1_Bog_Lore_RakkisHistory05", + "GBID": 0, + "PAD": 0, + "SNOActor": 288252, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215309, + "Name": "x1_Bog_Lore_RakkisHistory06", + "GBID": 0, + "PAD": 0, + "SNOActor": 288288, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215310, + "Name": "x1_Bog_Lore_RakkisHistory07", + "GBID": 0, + "PAD": 0, + "SNOActor": 288289, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215311, + "Name": "x1_Bog_Lore_RakkisHistory08", + "GBID": 0, + "PAD": 0, + "SNOActor": 292185, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215312, + "Name": "x1_Bog_Lore_RakkisHistory09", + "GBID": 0, + "PAD": 0, + "SNOActor": 292186, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1701215336, + "Name": "x1_Bog_Lore_RakkisHistory10", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1745906521, + "Name": "Lore_X1_WestmarchHistory_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 283543, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1745906522, + "Name": "Lore_X1_WestmarchHistory_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 283549, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1745906523, + "Name": "Lore_X1_WestmarchHistory_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 283557, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1745906524, + "Name": "Lore_X1_WestmarchHistory_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 283563, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1745906525, + "Name": "Lore_X1_WestmarchHistory_05", + "GBID": 0, + "PAD": 0, + "SNOActor": 283571, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1745906526, + "Name": "Lore_X1_WestmarchHistory_06", + "GBID": 0, + "PAD": 0, + "SNOActor": 283577, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1745906527, + "Name": "Lore_X1_WestmarchHistory_07", + "GBID": 0, + "PAD": 0, + "SNOActor": 283583, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 400219824, + "Name": "Lore_X1_Bog_Ideation_AdriaSpikeChest", + "GBID": 0, + "PAD": 0, + "SNOActor": 288713, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1854352640, + "Name": "X1_Bog_Sub240_Ideation_Draining_Pool_Lore", + "GBID": 0, + "PAD": 0, + "SNOActor": 288952, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1076473485, + "Name": "Lore_X1_Westm_Unique_Drop", + "GBID": 0, + "PAD": 0, + "SNOActor": 284668, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1478121397, + "Name": "Lore_X1_Westm_MaidenDrop", + "GBID": 0, + "PAD": 0, + "SNOActor": 285389, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -395786585, + "Name": "X1_Lore_Pandemonium1", + "GBID": 0, + "PAD": 0, + "SNOActor": 287156, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -395786584, + "Name": "X1_Lore_Pandemonium2", + "GBID": 0, + "PAD": 0, + "SNOActor": 357812, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -395786583, + "Name": "X1_Lore_Pandemonium3", + "GBID": 0, + "PAD": 0, + "SNOActor": 357813, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -656425313, + "Name": "X1_Lore_PrimeDiscovery1", + "GBID": 0, + "PAD": 0, + "SNOActor": 287166, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -656425312, + "Name": "X1_Lore_PrimeDiscovery2", + "GBID": 0, + "PAD": 0, + "SNOActor": 377652, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -656425311, + "Name": "X1_Lore_PrimeDiscovery3", + "GBID": 0, + "PAD": 0, + "SNOActor": 377653, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 659979184, + "Name": "X1_Lore_Realmwalker", + "GBID": 0, + "PAD": 0, + "SNOActor": 287162, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -395786582, + "Name": "X1_Lore_Pandemonium4", + "GBID": 0, + "PAD": 0, + "SNOActor": 287360, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -836100174, + "Name": "X1_Lore_SiegeAngelHex", + "GBID": 0, + "PAD": 0, + "SNOActor": 287379, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -870954388, + "Name": "X1_Lore_LostAngelNew", + "GBID": 0, + "PAD": 0, + "SNOActor": 287395, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1126266119, + "Name": "Lore_X1_Graveyard_Azthar", + "GBID": 0, + "PAD": 0, + "SNOActor": 290953, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1522407324, + "Name": "Lore_X1_Westm_CultRetaliation", + "GBID": 0, + "PAD": 0, + "SNOActor": 299937, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1478439163, + "Name": "Lore_X1_Westm_Sinkhole", + "GBID": 0, + "PAD": 0, + "SNOActor": 300130, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439155, + "Name": "X1_Lore_A1_Crusader_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 300199, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439156, + "Name": "X1_Lore_A1_Crusader_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 300180, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439157, + "Name": "X1_Lore_A1_Crusader_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 300182, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439158, + "Name": "X1_Lore_A1_Crusader_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 300184, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439159, + "Name": "X1_Lore_A1_Crusader_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 300186, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439160, + "Name": "X1_Lore_A1_Crusader_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 300188, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439161, + "Name": "X1_Lore_A1_Crusader_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 300190, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439162, + "Name": "X1_Lore_A1_Crusader_8", + "GBID": 0, + "PAD": 0, + "SNOActor": 300192, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 756439163, + "Name": "X1_Lore_A1_Crusader_9", + "GBID": 0, + "PAD": 0, + "SNOActor": 300194, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1310320708, + "Name": "X1_Lore_SC_Note", + "GBID": 0, + "PAD": 0, + "SNOActor": 302762, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 343377180, + "Name": "X1_fortress_Lore_Inarius1", + "GBID": 0, + "PAD": 0, + "SNOActor": 306937, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 343377181, + "Name": "X1_fortress_Lore_Inarius2", + "GBID": 0, + "PAD": 0, + "SNOActor": 306949, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 343377182, + "Name": "X1_fortress_Lore_Inarius3", + "GBID": 0, + "PAD": 0, + "SNOActor": 306955, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 343377183, + "Name": "X1_fortress_Lore_Inarius4", + "GBID": 0, + "PAD": 0, + "SNOActor": 306960, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 343377184, + "Name": "X1_fortress_Lore_Inarius5", + "GBID": 0, + "PAD": 0, + "SNOActor": 306965, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 343377185, + "Name": "X1_fortress_Lore_Inarius6", + "GBID": 0, + "PAD": 0, + "SNOActor": 306970, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 343377186, + "Name": "X1_fortress_Lore_Inarius7", + "GBID": 0, + "PAD": 0, + "SNOActor": 306975, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -685042871, + "Name": "X1_Pand_HexMaze_EN_Lore_Sister1", + "GBID": 0, + "PAD": 0, + "SNOActor": 310941, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -685042870, + "Name": "X1_Pand_HexMaze_EN_Lore_Sister2", + "GBID": 0, + "PAD": 0, + "SNOActor": 310943, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -685042869, + "Name": "X1_Pand_HexMaze_EN_Lore_Sister3", + "GBID": 0, + "PAD": 0, + "SNOActor": 310944, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1827985977, + "Name": "x1_fortress_Lore_Lilith1", + "GBID": 0, + "PAD": 0, + "SNOActor": 314508, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1827985976, + "Name": "x1_fortress_Lore_Lilith2", + "GBID": 0, + "PAD": 0, + "SNOActor": 314509, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1827985975, + "Name": "x1_fortress_Lore_Lilith3", + "GBID": 0, + "PAD": 0, + "SNOActor": 314510, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1827985974, + "Name": "x1_fortress_Lore_Lilith4", + "GBID": 0, + "PAD": 0, + "SNOActor": 314511, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 290644700, + "Name": "X1_Challenge_Lore", + "GBID": 0, + "PAD": 0, + "SNOActor": 328150, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 623274670, + "Name": "Lore_X1_Westm_KingEvent_Journal01", + "GBID": 0, + "PAD": 0, + "SNOActor": 336553, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -287483192, + "Name": "Lore_X1_Westm_KingEvent_Note", + "GBID": 0, + "PAD": 0, + "SNOActor": 336823, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 623274671, + "Name": "Lore_X1_Westm_KingEvent_Journal02", + "GBID": 0, + "PAD": 0, + "SNOActor": 336827, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1589702406, + "Name": "Lore_X1_TemplarMaesterJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 328759, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 466342037, + "Name": "X1_Lore_Bestiary_SummonedSoldier", + "GBID": 0, + "PAD": 0, + "SNOActor": 329255, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1004889880, + "Name": "X1_Lore_Bestiary_SummonedArcher", + "GBID": 0, + "PAD": 0, + "SNOActor": 329280, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 470802703, + "Name": "X1_Lore_Bestiary_SummonedShieldGuard", + "GBID": 0, + "PAD": 0, + "SNOActor": 329319, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 701785712, + "Name": "X1_Lore_Bestiary_RevenantSoldier", + "GBID": 0, + "PAD": 0, + "SNOActor": 329330, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -940233325, + "Name": "X1_Lore_Bestiary_RevenantArcher", + "GBID": 0, + "PAD": 0, + "SNOActor": 329342, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1279450852, + "Name": "X1_Lore_Bestiary_ShadowofDeath", + "GBID": 0, + "PAD": 0, + "SNOActor": 329400, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1938890799, + "Name": "X1_Lore_Bestiary_DeathMaiden", + "GBID": 0, + "PAD": 0, + "SNOActor": 329409, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 80901898, + "Name": "X1_Lore_Besitary_RevenantShieldGuard", + "GBID": 0, + "PAD": 0, + "SNOActor": 333743, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1765391636, + "Name": "X1_Lore_Bestiary_Exorcist", + "GBID": 0, + "PAD": 0, + "SNOActor": 335503, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -604515468, + "Name": "X1_Lore_Bestiary_SummonerofDead", + "GBID": 0, + "PAD": 0, + "SNOActor": 335514, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1283956180, + "Name": "X1_Lore_Bestiary_WarBeast", + "GBID": 0, + "PAD": 0, + "SNOActor": 335544, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 793895930, + "Name": "X1_Lore_Bestiary_GhastlySeraph", + "GBID": 0, + "PAD": 0, + "SNOActor": 335556, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1416905946, + "Name": "X1_Lore_Bestiary_Executioner", + "GBID": 0, + "PAD": 0, + "SNOActor": 335562, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 48766655, + "Name": "X1_Lore_Bestiary_SkeletalBeast", + "GBID": 0, + "PAD": 0, + "SNOActor": 335574, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 16661643, + "Name": "X1_Lore_DevilsHand_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 332378, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 16661644, + "Name": "X1_Lore_DevilsHand_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 335002, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 16661645, + "Name": "X1_Lore_DevilsHand_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 335007, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1617080807, + "Name": "Lore_X1_Bog_LordofFools", + "GBID": 0, + "PAD": 0, + "SNOActor": 351959, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1015415266, + "Name": "Lore_X1_PandExt_Tyrael_MalthaelsPlan", + "GBID": 0, + "PAD": 0, + "SNOActor": 354273, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 249977498, + "Name": "x1_Lore_AdventureMode_ZKNephalem", + "GBID": 0, + "PAD": 0, + "SNOActor": 353828, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 622412782, + "Name": "x1_Lore_AdventureMode_ZKPlans", + "GBID": 0, + "PAD": 0, + "SNOActor": 353834, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -659546635, + "Name": "x1_Lore_AdventureMode_ZKPortals", + "GBID": 0, + "PAD": 0, + "SNOActor": 353836, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -864554832, + "Name": "x1_Lore_AdventureMode_ZKReturn", + "GBID": 0, + "PAD": 0, + "SNOActor": 353837, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -184225286, + "Name": "Lore_X1_UrzaelsJournal_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 353207, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -184225285, + "Name": "Lore_X1_UrzaelsJournal_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 353215, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -184225284, + "Name": "Lore_X1_UrzaelsJournal_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 353221, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1275477015, + "Name": "Lore_X1_PandExt_GreatWeapon", + "GBID": 0, + "PAD": 0, + "SNOActor": 353006, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -270379441, + "Name": "Lore_X1_Westm_PlagueTunnels", + "GBID": 0, + "PAD": 0, + "SNOActor": 351786, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1793042377, + "Name": "x1_Lore_fortress_Malthael1", + "GBID": 0, + "PAD": 0, + "SNOActor": 354464, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1793042378, + "Name": "x1_Lore_fortress_Malthael2", + "GBID": 0, + "PAD": 0, + "SNOActor": 354465, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1793042379, + "Name": "x1_Lore_fortress_Malthael3", + "GBID": 0, + "PAD": 0, + "SNOActor": 354468, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1793042380, + "Name": "x1_Lore_fortress_Malthael4", + "GBID": 0, + "PAD": 0, + "SNOActor": 354469, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1793042381, + "Name": "x1_Lore_fortress_Malthael5", + "GBID": 0, + "PAD": 0, + "SNOActor": 354470, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1793042382, + "Name": "x1_Lore_fortress_Malthael6", + "GBID": 0, + "PAD": 0, + "SNOActor": 354471, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -438713976, + "Name": "X1_Lore_Bestiary_Anarch", + "GBID": 0, + "PAD": 0, + "SNOActor": 358296, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1968509047, + "Name": "X1_Lore_Bestiary_BarbedKraken", + "GBID": 0, + "PAD": 0, + "SNOActor": 358298, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -135210144, + "Name": "X1_Lore_Bestiary_BoganTrapper", + "GBID": 0, + "PAD": 0, + "SNOActor": 358300, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -398188809, + "Name": "X1_Lore_Bestiary_Boggit", + "GBID": 0, + "PAD": 0, + "SNOActor": 358302, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1746835603, + "Name": "X1_Lore_Bestiary_CorpseRaiser", + "GBID": 0, + "PAD": 0, + "SNOActor": 358304, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -944058707, + "Name": "X1_Lore_Bestiary_EnragedPhantasm", + "GBID": 0, + "PAD": 0, + "SNOActor": 358306, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -270313194, + "Name": "X1_Lore_Bestiary_Exarch", + "GBID": 0, + "PAD": 0, + "SNOActor": 358308, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1934086451, + "Name": "X1_Lore_Bestiary_FleshGorger", + "GBID": 0, + "PAD": 0, + "SNOActor": 358310, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1980342815, + "Name": "X1_Lore_Bestiary_FleshHurler", + "GBID": 0, + "PAD": 0, + "SNOActor": 358312, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1900162107, + "Name": "X1_Lore_Bestiary_FleshShaman", + "GBID": 0, + "PAD": 0, + "SNOActor": 358314, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1122046768, + "Name": "X1_Lore_Bestiary_MaggotBrood", + "GBID": 0, + "PAD": 0, + "SNOActor": 358316, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -476603028, + "Name": "X1_Lore_Bestiary_PrimordialScavenger", + "GBID": 0, + "PAD": 0, + "SNOActor": 358318, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 252677895, + "Name": "X1_Lore_Bestiary_Scarab", + "GBID": 0, + "PAD": 0, + "SNOActor": 358320, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1311110189, + "Name": "X1_Lore_Bestiary_ScavengingTunneler", + "GBID": 0, + "PAD": 0, + "SNOActor": 358322, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1880083999, + "Name": "X1_Lore_Bestiary_ScouringCharger", + "GBID": 0, + "PAD": 0, + "SNOActor": 358324, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1903593917, + "Name": "X1_Lore_Bestiary_ShriekingTerror", + "GBID": 0, + "PAD": 0, + "SNOActor": 358326, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -927320992, + "Name": "X1_Lore_Bestiary_SkeletalCrawler", + "GBID": 0, + "PAD": 0, + "SNOActor": 358328, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 956255122, + "Name": "X1_Lore_Bestiary_TuskedBogan", + "GBID": 0, + "PAD": 0, + "SNOActor": 358330, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -424770814, + "Name": "X1_Lore_Bestiary_VileBat", + "GBID": 0, + "PAD": 0, + "SNOActor": 358333, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 539193498, + "Name": "X1_Lore_Bestiary_WarscarredMarauder", + "GBID": 0, + "PAD": 0, + "SNOActor": 358337, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 621633937, + "Name": "X1_Lore_Bestiary_WarscarredRavager", + "GBID": 0, + "PAD": 0, + "SNOActor": 358339, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1999517698, + "Name": "X1_Lore_Bestiary_WingedAssassin", + "GBID": 0, + "PAD": 0, + "SNOActor": 358341, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1570817822, + "Name": "X1_Lore_Bestiary_WingedTalus", + "GBID": 0, + "PAD": 0, + "SNOActor": 358343, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 26850323, + "Name": "X1_Lore_SiegeRunes", + "GBID": 0, + "PAD": 0, + "SNOActor": 358345, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1155944225, + "Name": "X1_Lore_Bestiary_WarBeastLeader", + "GBID": 0, + "PAD": 0, + "SNOActor": 358294, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 731245960, + "Name": "Lore_p4_Forest_Cleric_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 433838, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 731245961, + "Name": "Lore_p4_Forest_Cleric_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 433844, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -852693660, + "Name": "Lore_p4_Forest_Hero_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 433790, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -852693659, + "Name": "Lore_p4_Forest_Hero_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 433796, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -852693658, + "Name": "Lore_p4_Forest_Hero_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 433802, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -852693657, + "Name": "Lore_p4_Forest_Hero_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 433808, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -852693656, + "Name": "Lore_p4_Forest_Hero_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 433815, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -852693655, + "Name": "Lore_p4_Forest_Hero_6", + "GBID": 0, + "PAD": 0, + "SNOActor": 433821, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -852693654, + "Name": "Lore_p4_Forest_Hero_7", + "GBID": 0, + "PAD": 0, + "SNOActor": 433827, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 435884006, + "Name": "Lore_p4_Forest_Shipwreck_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 434606, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 435884007, + "Name": "Lore_p4_Forest_Shipwreck_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 434741, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 435884008, + "Name": "Lore_p4_Forest_Shipwreck_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 434742, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 435884009, + "Name": "Lore_p4_Forest_Shipwreck_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 435024, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2134996236, + "Name": "Lore_P4_Ruins_BarbStory_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 435434, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2134996237, + "Name": "Lore_P4_Ruins_BarbStory_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 435440, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2134996238, + "Name": "Lore_P4_Ruins_BarbStory_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 435447, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2134996239, + "Name": "Lore_P4_Ruins_BarbStory_4", + "GBID": 0, + "PAD": 0, + "SNOActor": 435453, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2134996240, + "Name": "Lore_P4_Ruins_BarbStory_5", + "GBID": 0, + "PAD": 0, + "SNOActor": 435459, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1075135089, + "Name": "Lore_Lore_P3_ZoltunKulle_HowRevived", + "GBID": 0, + "PAD": 0, + "SNOActor": 439679, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 924406028, + "Name": "Lore_P3_ZoltunKulle_CubeHistory_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 439695, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 924406029, + "Name": "Lore_P3_ZoltunKulle_CubeHistory_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 439712, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 210021862, + "Name": "Lore_P3_ZoltunKulle_ShouldHaveListened", + "GBID": 0, + "PAD": 0, + "SNOActor": 439713, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 537072286, + "Name": "p43_AD_Lore_HallsOfTheBlind", + "GBID": 0, + "PAD": 0, + "SNOActor": 456800, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -313916597, + "Name": "p43_AD_Lore_WarlordOfBlood", + "GBID": 0, + "PAD": 0, + "SNOActor": 456835, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 590670870, + "Name": "p43_AD_Lore_ChamberOfBone", + "GBID": 0, + "PAD": 0, + "SNOActor": 456836, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 275021967, + "Name": "p43_AD_Lore_Valor", + "GBID": 0, + "PAD": 0, + "SNOActor": 456837, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496503, + "Name": "x1_Lore_Necromancer1", + "GBID": 0, + "PAD": 0, + "SNOActor": 471887, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496504, + "Name": "x1_Lore_Necromancer2", + "GBID": 0, + "PAD": 0, + "SNOActor": 471888, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496505, + "Name": "x1_Lore_Necromancer3", + "GBID": 0, + "PAD": 0, + "SNOActor": 471889, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496506, + "Name": "x1_Lore_Necromancer4", + "GBID": 0, + "PAD": 0, + "SNOActor": 471890, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496507, + "Name": "x1_Lore_Necromancer5", + "GBID": 0, + "PAD": 0, + "SNOActor": 471891, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496508, + "Name": "x1_Lore_Necromancer6", + "GBID": 0, + "PAD": 0, + "SNOActor": 471892, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496509, + "Name": "x1_Lore_Necromancer7", + "GBID": 0, + "PAD": 0, + "SNOActor": 471893, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496510, + "Name": "x1_Lore_Necromancer8", + "GBID": 0, + "PAD": 0, + "SNOActor": 471894, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1830496511, + "Name": "x1_Lore_Necromancer9", + "GBID": 0, + "PAD": 0, + "SNOActor": 471895, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1408846462, + "Name": "Lore_P6_CultistMissive", + "GBID": 0, + "PAD": 0, + "SNOActor": 473009, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1186924656, + "Name": "Lore_Bestiary_P6_Crow_Hound", + "GBID": 0, + "PAD": 0, + "SNOActor": 473611, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1755848502, + "Name": "Lore_Bestiary_P6_RavenFlyer", + "GBID": 0, + "PAD": 0, + "SNOActor": 472412, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 461936441, + "Name": "Lore_Bestiary_P6_Temple_Monstrosity", + "GBID": 0, + "PAD": 0, + "SNOActor": 473623, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -845423833, + "Name": "Lore_Bestiary_P6_TempleCultist", + "GBID": 0, + "PAD": 0, + "SNOActor": 472424, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1685214045, + "Name": "Lore_Bestiary_P6_Werewolf", + "GBID": 0, + "PAD": 0, + "SNOActor": 472420, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 292476495, + "Name": "P6_Lore_RealmsofFate", + "GBID": 0, + "PAD": 0, + "SNOActor": 472408, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 990418545, + "Name": "P6_Lore_Vidian", + "GBID": 0, + "PAD": 0, + "SNOActor": 472432, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1284441222, + "Name": "P6_Lore_MysteriousJournal1", + "GBID": 0, + "PAD": 0, + "SNOActor": 472376, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1284441223, + "Name": "P6_Lore_MysteriousJournal2", + "GBID": 0, + "PAD": 0, + "SNOActor": 472384, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1284441224, + "Name": "P6_Lore_MysteriousJournal3", + "GBID": 0, + "PAD": 0, + "SNOActor": 472390, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1284441225, + "Name": "P6_Lore_MysteriousJournal4", + "GBID": 0, + "PAD": 0, + "SNOActor": 472396, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1284441226, + "Name": "P6_Lore_MysteriousJournal5", + "GBID": 0, + "PAD": 0, + "SNOActor": 472402, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_Quests_Beta.gam b/src/GAM/Items_Quests_Beta.gam new file mode 100644 index 0000000..e662db3 Binary files /dev/null and b/src/GAM/Items_Quests_Beta.gam differ diff --git a/src/GAM/Items_Quests_Beta.json b/src/GAM/Items_Quests_Beta.json new file mode 100644 index 0000000..1a9981f --- /dev/null +++ b/src/GAM/Items_Quests_Beta.json @@ -0,0 +1,38530 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 197880, + "BalanceType": 2, + "I0": 1194795275, + "I1": 0 + }, + "Items": [ + { + "Hash": -785291622, + "Name": "Orn_trDun_Cath_Candlestand", + "GBID": 0, + "PAD": 0, + "SNOActor": 5739, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -701682068, + "Name": "Orn_trDun_Incense_Burner", + "GBID": 0, + "PAD": 0, + "SNOActor": 5884, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325375340, + "Name": "Orn_trDun_Gargoyle_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 5869, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -417207195, + "Name": "Orn_trDun_Weaponrack", + "GBID": 0, + "PAD": 0, + "SNOActor": 464, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -692179210, + "Name": "Orn_trDun_Cath_LibraryTable", + "GBID": 0, + "PAD": 0, + "SNOActor": 5773, + "ItemTypesGBID": -1079338204, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -895242340, + "Name": "PrimordialKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 4892, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -726516784, + "Name": "CathedralIdol", + "GBID": 0, + "PAD": 0, + "SNOActor": 3743, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1720554317, + "Name": "LeoricRelic", + "GBID": 0, + "PAD": 0, + "SNOActor": 4582, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 647463255, + "Name": "SkeletonKing_BrokenCrown", + "GBID": 0, + "PAD": 0, + "SNOActor": 92168, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1071607767, + "Name": "SkeletonKingCrown", + "GBID": 0, + "PAD": 0, + "SNOActor": 5356, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1363442904, + "Name": "Turnin_Act1_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 3179, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 50, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 57324810, + "Name": "BlacksmithsTome", + "GBID": 0, + "PAD": 0, + "SNOActor": 3366, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1279727265, + "Name": "MausoleumKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 4676, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1738161761, + "Name": "ReligiousArtifact", + "GBID": 0, + "PAD": 0, + "SNOActor": 5016, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -118602581, + "Name": "TestBook", + "GBID": 0, + "PAD": 0, + "SNOActor": 441, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1864443319, + "Name": "NephalemCube", + "GBID": 0, + "PAD": 0, + "SNOActor": 138979, + "ItemTypesGBID": -1352920439, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 10, + "Cost": 29000, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1810077949, + "Name": "LeoricsJournal1", + "GBID": 0, + "PAD": 0, + "SNOActor": 4583, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1810077950, + "Name": "LeoricsJournal2", + "GBID": 0, + "PAD": 0, + "SNOActor": 4584, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1810077951, + "Name": "LeoricsJournal3", + "GBID": 0, + "PAD": 0, + "SNOActor": 4585, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 247145180, + "Name": "LachdanansScroll", + "GBID": 0, + "PAD": 0, + "SNOActor": 4540, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -434143602, + "Name": "LachdanansScroll2", + "GBID": 0, + "PAD": 0, + "SNOActor": 85758, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -434143601, + "Name": "LachdanansScroll3", + "GBID": 0, + "PAD": 0, + "SNOActor": 85782, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -434143600, + "Name": "LachdanansScroll4", + "GBID": 0, + "PAD": 0, + "SNOActor": 85783, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -434143599, + "Name": "LachdanansScroll5", + "GBID": 0, + "PAD": 0, + "SNOActor": 85784, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -782404538, + "Name": "LachdanansScrollFinal", + "GBID": 0, + "PAD": 0, + "SNOActor": 85838, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1617867635, + "Name": "LeahJournal_PartOne", + "GBID": 0, + "PAD": 0, + "SNOActor": 86640, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1617861883, + "Name": "LeahJournal_PartTwo", + "GBID": 0, + "PAD": 0, + "SNOActor": 89490, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -915531581, + "Name": "LeahJournal_PartThree", + "GBID": 0, + "PAD": 0, + "SNOActor": 89514, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 192015858, + "Name": "CultCrown_Lore", + "GBID": 0, + "PAD": 0, + "SNOActor": 104048, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 780532346, + "Name": "Crown_Lore", + "GBID": 0, + "PAD": 0, + "SNOActor": 104065, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 429237663, + "Name": "Old_Tristram_Lore_Cain", + "GBID": 0, + "PAD": 0, + "SNOActor": 97614, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1279941041, + "Name": "Old_Tristram_Lore_Cain2", + "GBID": 0, + "PAD": 0, + "SNOActor": 97615, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -821040732, + "Name": "Old_Tristram_Lore_Gillian", + "GBID": 0, + "PAD": 0, + "SNOActor": 97616, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1324540330, + "Name": "Old_Tristram_Lore_Gillian2", + "GBID": 0, + "PAD": 0, + "SNOActor": 131021, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1519521653, + "Name": "Old_Tristram_Lore_Villager1", + "GBID": 0, + "PAD": 0, + "SNOActor": 97617, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1519521652, + "Name": "Old_Tristram_Lore_Villager2", + "GBID": 0, + "PAD": 0, + "SNOActor": 97618, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1519521651, + "Name": "Old_Tristram_Lore_Villager3", + "GBID": 0, + "PAD": 0, + "SNOActor": 97619, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1898880350, + "Name": "Old_Tristram_Lore_WirtsStory", + "GBID": 0, + "PAD": 0, + "SNOActor": 97620, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1334307399, + "Name": "Lore_CainJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 115118, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1082471257, + "Name": "Lore_CainJournal2", + "GBID": 0, + "PAD": 0, + "SNOActor": 167800, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 385786482, + "Name": "BlacksmithLetter", + "GBID": 0, + "PAD": 0, + "SNOActor": 123615, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 654690718, + "Name": "OldTristKey", + "GBID": 0, + "PAD": 0, + "SNOActor": 92244, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1109665507, + "Name": "Cloud Fire", + "GBID": 0, + "PAD": 0, + "SNOActor": 4184, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1478983832, + "Name": "A1SaveBlacksmithReward", + "GBID": 0, + "PAD": 0, + "SNOActor": 77732, + "ItemTypesGBID": 3940472, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2129176655, + "Name": "TreasureHuntersJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 5989, + "ItemTypesGBID": -938309842, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 820080253, + "Name": "Event_House1000Undead_CompleteBody", + "GBID": 0, + "PAD": 0, + "SNOActor": 93357, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1986612531, + "Name": "Event_House1000Undead_Bones_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 86036, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 3, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1986612530, + "Name": "Event_House1000Undead_Bones_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 174748, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 3, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1986612529, + "Name": "Event_House1000Undead_Bones_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 174749, + "ItemTypesGBID": 138327602, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 3, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 596634172, + "Name": "Event_Templar_Object_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 89757, + "ItemTypesGBID": 3940472, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 6, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325697435, + "Name": "TemplarIntroEventLore_1", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -325697434, + "Name": "TemplarIntroEventLore_2", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 968930622, + "Name": "HangingTreeLore", + "GBID": 0, + "PAD": 0, + "SNOActor": 145426, + "ItemTypesGBID": 3646475, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 192496820, + "Name": "Event_Vendor_Armorer_Item", + "GBID": 0, + "PAD": 0, + "SNOActor": 119245, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -353272906, + "Name": "Event_Vendor_Alchemist_Item", + "GBID": 0, + "PAD": 0, + "SNOActor": 4438, + "ItemTypesGBID": 138327602, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1196146943, + "Name": "Event_MapVendor_Egg", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 3940472, + "Flags": 36, + "DyeType": 0, + "ItemLevel": 0, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1254121144, + "Name": "Lore_Bestiary_WretchedMother", + "GBID": 0, + "PAD": 0, + "SNOActor": -1, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1191793145, + "Name": "Lore_Bestiary_Zombie", + "GBID": 0, + "PAD": 0, + "SNOActor": 136835, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -602374345, + "Name": "Lore_ArmorerVendor", + "GBID": 0, + "PAD": 0, + "SNOActor": 154309, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -811102519, + "Name": "Lore_Bestiary_CryptChild", + "GBID": 0, + "PAD": 0, + "SNOActor": 147312, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -767569512, + "Name": "Lore_Bestiary_Ghost", + "GBID": 0, + "PAD": 0, + "SNOActor": 147314, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 476207161, + "Name": "Lore_Bestiary_TreasureGoblin", + "GBID": 0, + "PAD": 0, + "SNOActor": 147316, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -767569454, + "Name": "Lore_Bestiary_Ghoul", + "GBID": 0, + "PAD": 0, + "SNOActor": 147318, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 739667857, + "Name": "Lore_Bestiary_Unburied", + "GBID": 0, + "PAD": 0, + "SNOActor": 147321, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -426252494, + "Name": "Lore_Bestiary_Grotesque", + "GBID": 0, + "PAD": 0, + "SNOActor": 147323, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1402898341, + "Name": "Lore_Bestiary_WoodWraith", + "GBID": 0, + "PAD": 0, + "SNOActor": 147328, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 86502323, + "Name": "Lore_CurioVendor2", + "GBID": 0, + "PAD": 0, + "SNOActor": 154408, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 576661771, + "Name": "Lore_Vendor_Tinker", + "GBID": 0, + "PAD": 0, + "SNOActor": 154426, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -471413419, + "Name": "OldTristram_DescentJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 156662, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1937123165, + "Name": "OldTristram_WarrivsJournal", + "GBID": 0, + "PAD": 0, + "SNOActor": 156686, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 464288982, + "Name": "Leorics_Death", + "GBID": 0, + "PAD": 0, + "SNOActor": 139830, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 311019458, + "Name": "OldTristramCellar_Lore_New", + "GBID": 0, + "PAD": 0, + "SNOActor": 158663, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -879729685, + "Name": "A2_MapVendor_DungeonMap", + "GBID": 0, + "PAD": 0, + "SNOActor": 162326, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1905504632, + "Name": "A1_BlackMushroom", + "GBID": 0, + "PAD": 0, + "SNOActor": 162311, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 729949760, + "Name": "BlackRockLedger01", + "GBID": 0, + "PAD": 0, + "SNOActor": 166432, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 729949761, + "Name": "BlackRockLedger02", + "GBID": 0, + "PAD": 0, + "SNOActor": 166433, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 729949762, + "Name": "BlackRockLedger03", + "GBID": 0, + "PAD": 0, + "SNOActor": 166434, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 729949763, + "Name": "BlackRockLedger04", + "GBID": 0, + "PAD": 0, + "SNOActor": 166435, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 729949764, + "Name": "BlackRockLedger05", + "GBID": 0, + "PAD": 0, + "SNOActor": 166436, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 729949765, + "Name": "BlackRockLedger06", + "GBID": 0, + "PAD": 0, + "SNOActor": 166437, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1489298882, + "Name": "Lore_Bestiary_Hellion", + "GBID": 0, + "PAD": 0, + "SNOActor": 177120, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1530400928, + "Name": "Lore_Bestiary_QuillFiend", + "GBID": 0, + "PAD": 0, + "SNOActor": 177122, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1401540177, + "Name": "Lore_Bestiary_Scavenger", + "GBID": 0, + "PAD": 0, + "SNOActor": 177126, + "ItemTypesGBID": 3646475, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1008601610, + "Name": "p4_SetDung_Clue_Barb_Kings", + "GBID": 0, + "PAD": 0, + "SNOActor": 446671, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1006237357, + "Name": "p4_SetDung_Clue_Barb_Might", + "GBID": 0, + "PAD": 0, + "SNOActor": 446672, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1340026526, + "Name": "p4_SetDung_Clue_Barb_Raekor", + "GBID": 0, + "PAD": 0, + "SNOActor": 446673, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1536216081, + "Name": "p4_SetDung_Clue_Barb_Wastes", + "GBID": 0, + "PAD": 0, + "SNOActor": 446354, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 508566587, + "Name": "p4_SetDung_Clue_Cru_Akkhan", + "GBID": 0, + "PAD": 0, + "SNOActor": 446674, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1178640685, + "Name": "p4_SetDung_Clue_Cru_Roland", + "GBID": 0, + "PAD": 0, + "SNOActor": 446675, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1205675916, + "Name": "p4_SetDung_Clue_Cru_Seeker", + "GBID": 0, + "PAD": 0, + "SNOActor": 446676, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1248736363, + "Name": "p4_SetDung_Clue_Cru_Thorns", + "GBID": 0, + "PAD": 0, + "SNOActor": 446677, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451670310, + "Name": "p4_SetDung_Clue_DH_Ess", + "GBID": 0, + "PAD": 0, + "SNOActor": 446678, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451662193, + "Name": "p4_SetDung_Clue_DH_Mar", + "GBID": 0, + "PAD": 0, + "SNOActor": 446679, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -451661102, + "Name": "p4_SetDung_Clue_DH_Nat", + "GBID": 0, + "PAD": 0, + "SNOActor": 446680, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1993180232, + "Name": "p4_SetDung_Clue_DH_Shadows", + "GBID": 0, + "PAD": 0, + "SNOActor": 446681, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1388821457, + "Name": "p4_SetDung_Clue_Monk_Innas", + "GBID": 0, + "PAD": 0, + "SNOActor": 446682, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1015008352, + "Name": "p4_SetDung_Clue_Monk_Storms", + "GBID": 0, + "PAD": 0, + "SNOActor": 446683, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 902600468, + "Name": "p4_SetDung_Clue_Monk_Sunwuko", + "GBID": 0, + "PAD": 0, + "SNOActor": 446684, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -946459054, + "Name": "p4_SetDung_Clue_Monk_Uliana", + "GBID": 0, + "PAD": 0, + "SNOActor": 449407, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -814118690, + "Name": "p4_SetDung_Clue_WD_Haunt", + "GBID": 0, + "PAD": 0, + "SNOActor": 446686, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 886454706, + "Name": "p4_SetDung_Clue_WD_Jade", + "GBID": 0, + "PAD": 0, + "SNOActor": 446687, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -648277371, + "Name": "p4_SetDung_Clue_WD_Spider", + "GBID": 0, + "PAD": 0, + "SNOActor": 446688, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -799390868, + "Name": "p4_SetDung_Clue_WD_Tooth", + "GBID": 0, + "PAD": 0, + "SNOActor": 446689, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1026613476, + "Name": "p4_SetDung_Clue_Wiz_Firebird", + "GBID": 0, + "PAD": 0, + "SNOActor": 446690, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808835620, + "Name": "p4_SetDung_Clue_Wiz_Opus", + "GBID": 0, + "PAD": 0, + "SNOActor": 446353, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 924787948, + "Name": "p4_SetDung_Clue_Wiz_Rasha", + "GBID": 0, + "PAD": 0, + "SNOActor": 446691, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1927739778, + "Name": "p4_SetDung_Clue_Wiz_Vyr", + "GBID": 0, + "PAD": 0, + "SNOActor": 446692, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247821299, + "Name": "p4_SetDung_LoreItem_1", + "GBID": 0, + "PAD": 0, + "SNOActor": 448744, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247821298, + "Name": "p4_SetDung_LoreItem_2", + "GBID": 0, + "PAD": 0, + "SNOActor": 448745, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -247821297, + "Name": "p4_SetDung_LoreItem_3", + "GBID": 0, + "PAD": 0, + "SNOActor": 448746, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1552753018, + "Name": "p43_AD_LorePage1", + "GBID": 0, + "PAD": 0, + "SNOActor": 454971, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1552753019, + "Name": "p43_AD_LorePage2", + "GBID": 0, + "PAD": 0, + "SNOActor": 454972, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1552753020, + "Name": "p43_AD_LorePage3", + "GBID": 0, + "PAD": 0, + "SNOActor": 454973, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1552753021, + "Name": "p43_AD_LorePage4", + "GBID": 0, + "PAD": 0, + "SNOActor": 454993, + "ItemTypesGBID": 3940472, + "Flags": 160, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1313305802, + "Name": "p43_AD_PreEventLore01", + "GBID": 0, + "PAD": 0, + "SNOActor": 455696, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1313305801, + "Name": "p43_AD_PreEventLore02", + "GBID": 0, + "PAD": 0, + "SNOActor": 455712, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1313305800, + "Name": "p43_AD_PreEventLore03", + "GBID": 0, + "PAD": 0, + "SNOActor": 455713, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1313305799, + "Name": "p43_AD_PreEventLore04", + "GBID": 0, + "PAD": 0, + "SNOActor": 455714, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1313305798, + "Name": "p43_AD_PreEventLore05", + "GBID": 0, + "PAD": 0, + "SNOActor": 455715, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1313305797, + "Name": "p43_AD_PreEventLore06", + "GBID": 0, + "PAD": 0, + "SNOActor": 455716, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1313305796, + "Name": "p43_AD_PreEventLore07", + "GBID": 0, + "PAD": 0, + "SNOActor": 455717, + "ItemTypesGBID": 3940472, + "Flags": 32, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -679596431, + "Name": "p43_AD_BlackMushroom", + "GBID": 0, + "PAD": 0, + "SNOActor": 162311, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2079658197, + "Name": "p43_AD_WirtsLeg_01", + "GBID": 0, + "PAD": 0, + "SNOActor": 457032, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2079658196, + "Name": "p43_AD_WirtsLeg_02", + "GBID": 0, + "PAD": 0, + "SNOActor": 457033, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2079658195, + "Name": "p43_AD_WirtsLeg_03", + "GBID": 0, + "PAD": 0, + "SNOActor": 457049, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2079658194, + "Name": "p43_AD_WirtsLeg_04", + "GBID": 0, + "PAD": 0, + "SNOActor": 457050, + "ItemTypesGBID": -1079338204, + "Flags": 224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1955422127, + "Name": "p43_AD_WirtsMap", + "GBID": 0, + "PAD": 0, + "SNOActor": 458373, + "ItemTypesGBID": -1079338204, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 1, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -616311892, + "Name": "p6_SetDung_Clue_Necro_Blood", + "GBID": 0, + "PAD": 0, + "SNOActor": 468394, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1022531296, + "Name": "p6_SetDung_Clue_Necro_Bone", + "GBID": 0, + "PAD": 0, + "SNOActor": 468395, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1683928378, + "Name": "p6_SetDung_Clue_Necro_Plague", + "GBID": 0, + "PAD": 0, + "SNOActor": 468397, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -596553093, + "Name": "p6_SetDung_Clue_Necro_Saint", + "GBID": 0, + "PAD": 0, + "SNOActor": 468396, + "ItemTypesGBID": 3940472, + "Flags": 96, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 0, + "CostAlt": 5, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 0, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 500, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_RandomPlaceholder.gam b/src/GAM/Items_RandomPlaceholder.gam new file mode 100644 index 0000000..b0830b2 Binary files /dev/null and b/src/GAM/Items_RandomPlaceholder.gam differ diff --git a/src/GAM/Items_RandomPlaceholder.json b/src/GAM/Items_RandomPlaceholder.json new file mode 100644 index 0000000..2245738 --- /dev/null +++ b/src/GAM/Items_RandomPlaceholder.json @@ -0,0 +1,5308 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 361240, + "BalanceType": 2, + "I0": -2032277753, + "I1": 0 + }, + "Items": [ + { + "Hash": -1123632963, + "Name": "PH_Helm", + "GBID": 0, + "PAD": 0, + "SNOActor": 377344, + "ItemTypesGBID": -947867741, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 7, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371288, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1320136079, + "Name": "PH_ChestArmor", + "GBID": 0, + "PAD": 0, + "SNOActor": 377345, + "ItemTypesGBID": 828360981, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371289, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 398669767, + "Name": "PH_Gloves", + "GBID": 0, + "PAD": 0, + "SNOActor": 377346, + "ItemTypesGBID": -131821392, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 2, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371290, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1568065342, + "Name": "PH_Boots", + "GBID": 0, + "PAD": 0, + "SNOActor": 377347, + "ItemTypesGBID": 120334087, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371291, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2039876368, + "Name": "PH_Shoulders", + "GBID": 0, + "PAD": 0, + "SNOActor": 377348, + "ItemTypesGBID": -940830407, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371292, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1123848578, + "Name": "PH_Belt", + "GBID": 0, + "PAD": 0, + "SNOActor": 377349, + "ItemTypesGBID": -948083356, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371287, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1584164029, + "Name": "PH_Pants", + "GBID": 0, + "PAD": 0, + "SNOActor": 377350, + "ItemTypesGBID": 3994699, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 2, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371293, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1673645383, + "Name": "PH_Bracers", + "GBID": 0, + "PAD": 0, + "SNOActor": 377351, + "ItemTypesGBID": -1999984446, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371294, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1123269177, + "Name": "PH_Ring", + "GBID": 0, + "PAD": 0, + "SNOActor": 377352, + "ItemTypesGBID": 4214896, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 4, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 10, + "CostAlt": 50, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371295, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 165248063, + "Name": "PH_Amulet", + "GBID": 0, + "PAD": 0, + "SNOActor": 377353, + "ItemTypesGBID": -365243096, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 7, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 20, + "CostAlt": 100, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371296, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1150955558, + "Name": "PH_1HWeapon", + "GBID": 0, + "PAD": 0, + "SNOActor": 377355, + "ItemTypesGBID": -241705760, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 15, + "CostAlt": 75, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371298, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1482185541, + "Name": "PH_2HWeapon", + "GBID": 0, + "PAD": 0, + "SNOActor": 377356, + "ItemTypesGBID": -241705727, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 15, + "CostAlt": 75, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371315, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 863316880, + "Name": "PH_Shield", + "GBID": 0, + "PAD": 0, + "SNOActor": 377357, + "ItemTypesGBID": 332825721, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371308, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1075245638, + "Name": "PH_Orb", + "GBID": 0, + "PAD": 0, + "SNOActor": 377358, + "ItemTypesGBID": 124739, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371309, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1123442452, + "Name": "PH_Mojo", + "GBID": 0, + "PAD": 0, + "SNOActor": 377359, + "ItemTypesGBID": 4041621, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371310, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 800481363, + "Name": "PH_Quiver", + "GBID": 0, + "PAD": 0, + "SNOActor": 377360, + "ItemTypesGBID": 269990204, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 371311, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1281607460, + "Name": "PH_Phylactery", + "GBID": 0, + "PAD": 0, + "SNOActor": 472445, + "ItemTypesGBID": 311436835, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 5, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 472437, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 639200506, + "Name": "P6_PTR_Vendor_RandomNecroLegendary", + "GBID": 0, + "PAD": 0, + "SNOActor": 476155, + "ItemTypesGBID": 311436835, + "Flags": 12320, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 100, + "CostAlt": 25, + "IdentifyCost": 0, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 0, + "BaseDurability": 0, + "DurabilityVariance": 200, + "EnchantAffixCost": 0, + "EnchantAffixCostX1": 500, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 100, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": 476161, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": -1, + "SNORareNameSuffixStringList": -1, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 0.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": -1, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file diff --git a/src/GAM/Items_Weapons.gam b/src/GAM/Items_Weapons.gam new file mode 100644 index 0000000..d545b4d Binary files /dev/null and b/src/GAM/Items_Weapons.gam differ diff --git a/src/GAM/Items_Weapons.json b/src/GAM/Items_Weapons.json new file mode 100644 index 0000000..689ce57 --- /dev/null +++ b/src/GAM/Items_Weapons.json @@ -0,0 +1,142606 @@ +{ + "Header": { + "DeadBeef": -559038737, + "SnoType": 2458, + "Unknown1": 0, + "Unknown2": 0, + "Unknown3": 0, + "Unknown4": 0, + "SNOId": 19754, + "BalanceType": 2, + "I0": 24643160, + "I1": 0 + }, + "Items": [ + { + "Hash": -546181146, + "Name": "Axe_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 3245, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 200, + "DynamicCraftCostRare": 333, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546181145, + "Name": "Axe_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 3246, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 6, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 65, + "CostAlt": 5, + "IdentifyCost": 12, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 3, + "CrafterRequiredLevel": 3, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 600, + "DynamicCraftCostRare": 999, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546181144, + "Name": "Axe_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 3247, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546181143, + "Name": "Axe_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 3248, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 95, + "CostAlt": 5, + "IdentifyCost": 32, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 13, + "CrafterRequiredLevel": 13, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2600, + "DynamicCraftCostRare": 4329, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546181142, + "Name": "Axe_1H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 3249, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 107, + "CostAlt": 5, + "IdentifyCost": 40, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 17, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 12.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3400, + "DynamicCraftCostRare": 5661, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546181141, + "Name": "Axe_1H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 3250, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 119, + "CostAlt": 5, + "IdentifyCost": 48, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 21, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 15.0, + "WeaponDamageDelta": 11.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4200, + "DynamicCraftCostRare": 6993, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546181140, + "Name": "Axe_1H_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 3251, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 131, + "CostAlt": 5, + "IdentifyCost": 56, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 17.0, + "WeaponDamageDelta": 14.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5000, + "DynamicCraftCostRare": 8325, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546180057, + "Name": "Axe_1H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 3245, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 143, + "CostAlt": 5, + "IdentifyCost": 64, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 16.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6000, + "DynamicCraftCostRare": 9990, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546180056, + "Name": "Axe_1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 3246, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 155, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 34, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 25.0, + "WeaponDamageDelta": 21.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6800, + "DynamicCraftCostRare": 11322, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546180055, + "Name": "Axe_1H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 3247, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 170, + "CostAlt": 5, + "IdentifyCost": 82, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 33.0, + "WeaponDamageDelta": 27.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7800, + "DynamicCraftCostRare": 12987, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546180054, + "Name": "Axe_1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 3248, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 44, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 179, + "CostAlt": 5, + "IdentifyCost": 88, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 38.0, + "WeaponDamageDelta": 31.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8400, + "DynamicCraftCostRare": 13986, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546180053, + "Name": "Axe_1H_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 3249, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 191, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 46, + "CrafterRequiredLevel": 46, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 47.0, + "WeaponDamageDelta": 39.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9200, + "DynamicCraftCostRare": 15318, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546180052, + "Name": "Axe_1H_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 3250, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 197, + "CostAlt": 5, + "IdentifyCost": 100, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 48, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 55.0, + "WeaponDamageDelta": 46.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9600, + "DynamicCraftCostRare": 15984, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546180051, + "Name": "Axe_1H_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 3251, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 203, + "CostAlt": 5, + "IdentifyCost": 104, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 64.0, + "WeaponDamageDelta": 54.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10200, + "DynamicCraftCostRare": 16983, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546178968, + "Name": "Axe_1H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 3245, + "ItemTypesGBID": 109694, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 209, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 70.0, + "WeaponDamageDelta": 59.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10600, + "DynamicCraftCostRare": 17649, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546178967, + "Name": "Axe_1H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 3246, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 78.0, + "WeaponDamageDelta": 66.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546178966, + "Name": "Axe_1H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 3247, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 87.0, + "WeaponDamageDelta": 73.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546178965, + "Name": "Axe_1H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 3248, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 227, + "CostAlt": 5, + "IdentifyCost": 120, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 96.0, + "WeaponDamageDelta": 81.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11800, + "DynamicCraftCostRare": 19647, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546178964, + "Name": "Axe_1H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 3249, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 112.0, + "WeaponDamageDelta": 94.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546178963, + "Name": "Axe_1H_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 3250, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 129.0, + "WeaponDamageDelta": 109.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546178962, + "Name": "Axe_1H_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 3251, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 149.0, + "WeaponDamageDelta": 126.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546177879, + "Name": "Axe_1H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335155, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 201.0, + "WeaponDamageDelta": 170.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546177878, + "Name": "Axe_1H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367143, + "ItemTypesGBID": 109694, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 249.0, + "WeaponDamageDelta": 212.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821907930, + "Name": "Dagger_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 3903, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 56, + "CostAlt": 5, + "IdentifyCost": 6, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 200, + "DynamicCraftCostRare": 333, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821907931, + "Name": "Dagger_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 3904, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821907932, + "Name": "Dagger_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 3905, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 86, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 5.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2000, + "DynamicCraftCostRare": 3330, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821907933, + "Name": "Dagger_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 3906, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 98, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 14, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 7.0, + "WeaponDamageDelta": 13.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2800, + "DynamicCraftCostRare": 4662, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821907934, + "Name": "Dagger_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 3907, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 104, + "CostAlt": 5, + "IdentifyCost": 38, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 16, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 7.0, + "WeaponDamageDelta": 14.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3200, + "DynamicCraftCostRare": 5328, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821907935, + "Name": "Dagger_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 3908, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 122, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 22, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 18.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4400, + "DynamicCraftCostRare": 7326, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821907936, + "Name": "Dagger_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 3909, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 26, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5200, + "DynamicCraftCostRare": 8658, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821909019, + "Name": "Dagger_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 3903, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 149, + "CostAlt": 5, + "IdentifyCost": 68, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 32, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 13.0, + "WeaponDamageDelta": 25.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6400, + "DynamicCraftCostRare": 10656, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821909020, + "Name": "Dagger_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 3904, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 15.0, + "WeaponDamageDelta": 29.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821909021, + "Name": "Dagger_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 3905, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 167, + "CostAlt": 5, + "IdentifyCost": 80, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 38, + "CrafterRequiredLevel": 38, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 17.0, + "WeaponDamageDelta": 33.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7600, + "DynamicCraftCostRare": 12654, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821909022, + "Name": "Dagger_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 3906, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 86, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 19.0, + "WeaponDamageDelta": 38.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821909023, + "Name": "Dagger_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 3907, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 22.0, + "WeaponDamageDelta": 44.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821909024, + "Name": "Dagger_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 3908, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 194, + "CostAlt": 5, + "IdentifyCost": 98, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 26.0, + "WeaponDamageDelta": 51.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9400, + "DynamicCraftCostRare": 15651, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821909025, + "Name": "Dagger_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 3909, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 31.0, + "WeaponDamageDelta": 61.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821910108, + "Name": "Dagger_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 3903, + "ItemTypesGBID": -262576534, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 206, + "CostAlt": 5, + "IdentifyCost": 106, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 34.0, + "WeaponDamageDelta": 67.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10400, + "DynamicCraftCostRare": 17316, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821910109, + "Name": "Dagger_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 3904, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 209, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 34.0, + "WeaponDamageDelta": 69.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10600, + "DynamicCraftCostRare": 17649, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821910110, + "Name": "Dagger_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 3905, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 218, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 39.0, + "WeaponDamageDelta": 79.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11200, + "DynamicCraftCostRare": 18648, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821910111, + "Name": "Dagger_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 3906, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 224, + "CostAlt": 5, + "IdentifyCost": 118, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 43.0, + "WeaponDamageDelta": 86.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11600, + "DynamicCraftCostRare": 19314, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821910112, + "Name": "Dagger_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 3907, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 52.0, + "WeaponDamageDelta": 104.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821910113, + "Name": "Dagger_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 3908, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 59.0, + "WeaponDamageDelta": 119.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821910114, + "Name": "Dagger_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 3909, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 67.0, + "WeaponDamageDelta": 136.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821911197, + "Name": "Dagger_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335128, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 90.0, + "WeaponDamageDelta": 180.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 821911198, + "Name": "Dagger_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367136, + "ItemTypesGBID": -262576534, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 1, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 107.0, + "WeaponDamageDelta": 214.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.5, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448105007, + "Name": "CeremonialDagger_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 139102, + "ItemTypesGBID": -199811863, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448105006, + "Name": "CeremonialDagger_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 139105, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 86, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4.0, + "WeaponDamageDelta": 13.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2000, + "DynamicCraftCostRare": 3330, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448105005, + "Name": "CeremonialDagger_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 139106, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 101, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 15, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 18.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3000, + "DynamicCraftCostRare": 4995, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448105004, + "Name": "CeremonialDagger_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 139107, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 24, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 26.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4800, + "DynamicCraftCostRare": 7992, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1902563147, + "Name": "CeremonialDagger_1H_004a", + "GBID": 0, + "PAD": 0, + "SNOActor": 139107, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 140, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 29, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10.0, + "WeaponDamageDelta": 31.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5800, + "DynamicCraftCostRare": 9657, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448103918, + "Name": "CeremonialDagger_1H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 139102, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 146, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 31, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 11.0, + "WeaponDamageDelta": 34.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6200, + "DynamicCraftCostRare": 10323, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448103917, + "Name": "CeremonialDagger_1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 139105, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 14.0, + "WeaponDamageDelta": 41.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448103916, + "Name": "CeremonialDagger_1H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 139106, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 173, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 18.0, + "WeaponDamageDelta": 53.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8000, + "DynamicCraftCostRare": 13320, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448103915, + "Name": "CeremonialDagger_1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 139107, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 188, + "CostAlt": 5, + "IdentifyCost": 94, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 23.0, + "WeaponDamageDelta": 69.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9000, + "DynamicCraftCostRare": 14985, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448102829, + "Name": "CeremonialDagger_1H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 139102, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 31.0, + "WeaponDamageDelta": 92.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448102828, + "Name": "CeremonialDagger_1H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 139105, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 39.0, + "WeaponDamageDelta": 118.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448102827, + "Name": "CeremonialDagger_1H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 139106, + "ItemTypesGBID": -199811863, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 227, + "CostAlt": 5, + "IdentifyCost": 120, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 47.0, + "WeaponDamageDelta": 142.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11800, + "DynamicCraftCostRare": 19647, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448102826, + "Name": "CeremonialDagger_1H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 139105, + "ItemTypesGBID": -199811863, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 54.0, + "WeaponDamageDelta": 164.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448102825, + "Name": "CeremonialDagger_1H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 139106, + "ItemTypesGBID": -199811863, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 62.0, + "WeaponDamageDelta": 189.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448102824, + "Name": "CeremonialDagger_1H_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 139107, + "ItemTypesGBID": -199811863, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 71.0, + "WeaponDamageDelta": 217.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448101740, + "Name": "CeremonialDagger_1H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 326811, + "ItemTypesGBID": -199811863, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 96.0, + "WeaponDamageDelta": 289.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448101739, + "Name": "CeremonialDagger_1H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367198, + "ItemTypesGBID": -199811863, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 117.0, + "WeaponDamageDelta": 352.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5543880, + "Name": "FistWeapon_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 4133, + "ItemTypesGBID": -2094596416, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5543881, + "Name": "FistWeapon_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 4134, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 86, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 7.0, + "WeaponDamageDelta": 8.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2000, + "DynamicCraftCostRare": 3330, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5543882, + "Name": "FistWeapon_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 4135, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 101, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 15, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 11.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3000, + "DynamicCraftCostRare": 4995, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5543883, + "Name": "FistWeapon_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 4136, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 24, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 13.0, + "WeaponDamageDelta": 16.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4800, + "DynamicCraftCostRare": 7992, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 182948236, + "Name": "FistWeapon_1H_004a", + "GBID": 0, + "PAD": 0, + "SNOActor": 4136, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 143, + "CostAlt": 5, + "IdentifyCost": 64, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 16.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6000, + "DynamicCraftCostRare": 9990, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5544969, + "Name": "FistWeapon_1H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 4133, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 146, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 31, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 17.0, + "WeaponDamageDelta": 21.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6200, + "DynamicCraftCostRare": 10323, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5544970, + "Name": "FistWeapon_1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 4134, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 26.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5544971, + "Name": "FistWeapon_1H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 4135, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 173, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 26.0, + "WeaponDamageDelta": 34.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8000, + "DynamicCraftCostRare": 13320, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5544972, + "Name": "FistWeapon_1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 4136, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 188, + "CostAlt": 5, + "IdentifyCost": 94, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 33.0, + "WeaponDamageDelta": 43.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9000, + "DynamicCraftCostRare": 14985, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5546058, + "Name": "FistWeapon_1H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 4133, + "ItemTypesGBID": -2094596416, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 43.0, + "WeaponDamageDelta": 57.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5546059, + "Name": "FistWeapon_1H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 4134, + "ItemTypesGBID": -2094596416, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 56.0, + "WeaponDamageDelta": 74.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5546060, + "Name": "FistWeapon_1H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 4135, + "ItemTypesGBID": -2094596416, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 227, + "CostAlt": 5, + "IdentifyCost": 120, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 67.0, + "WeaponDamageDelta": 90.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11800, + "DynamicCraftCostRare": 19647, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5546061, + "Name": "FistWeapon_1H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 4134, + "ItemTypesGBID": -2094596416, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 78.0, + "WeaponDamageDelta": 103.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5546062, + "Name": "FistWeapon_1H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 4135, + "ItemTypesGBID": -2094596416, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 90.0, + "WeaponDamageDelta": 120.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5546063, + "Name": "FistWeapon_1H_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 4136, + "ItemTypesGBID": -2094596416, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 104.0, + "WeaponDamageDelta": 138.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5547147, + "Name": "FistWeapon_1H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 328572, + "ItemTypesGBID": -2094596416, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 138.0, + "WeaponDamageDelta": 184.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5547148, + "Name": "FistWeapon_1H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367193, + "ItemTypesGBID": -2094596416, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 168.0, + "WeaponDamageDelta": 224.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044215917, + "Name": "CombatStaff_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 3835, + "ItemTypesGBID": -1620551894, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 83, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 11.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044215916, + "Name": "CombatStaff_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 3836, + "ItemTypesGBID": -1620551894, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 95, + "CostAlt": 5, + "IdentifyCost": 32, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 13, + "CrafterRequiredLevel": 13, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 29.0, + "WeaponDamageDelta": 24.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2600, + "DynamicCraftCostRare": 4329, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044215915, + "Name": "CombatStaff_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 3837, + "ItemTypesGBID": -1620551894, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 110, + "CostAlt": 5, + "IdentifyCost": 42, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 37.0, + "WeaponDamageDelta": 31.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3600, + "DynamicCraftCostRare": 5994, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044215914, + "Name": "CombatStaff_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 3838, + "ItemTypesGBID": -1620551894, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 57.0, + "WeaponDamageDelta": 47.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5400, + "DynamicCraftCostRare": 8991, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044214828, + "Name": "CombatStaff_2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 3835, + "ItemTypesGBID": -1620551894, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 146, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 31, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 68.0, + "WeaponDamageDelta": 57.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6200, + "DynamicCraftCostRare": 10323, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044214827, + "Name": "CombatStaff_2H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 3836, + "ItemTypesGBID": -1620551894, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 161, + "CostAlt": 5, + "IdentifyCost": 76, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 90.0, + "WeaponDamageDelta": 76.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7200, + "DynamicCraftCostRare": 11988, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044214826, + "Name": "CombatStaff_2H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 3837, + "ItemTypesGBID": -1620551894, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 44, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 179, + "CostAlt": 5, + "IdentifyCost": 88, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 129.0, + "WeaponDamageDelta": 110.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8400, + "DynamicCraftCostRare": 13986, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044214825, + "Name": "CombatStaff_2H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 3838, + "ItemTypesGBID": -1620551894, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 197, + "CostAlt": 5, + "IdentifyCost": 100, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 48, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 192.0, + "WeaponDamageDelta": 163.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9600, + "DynamicCraftCostRare": 15984, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044213739, + "Name": "CombatStaff_2H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 3835, + "ItemTypesGBID": -1620551894, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 203, + "CostAlt": 5, + "IdentifyCost": 104, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 229.0, + "WeaponDamageDelta": 195.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10200, + "DynamicCraftCostRare": 16983, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044213738, + "Name": "CombatStaff_2H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 3836, + "ItemTypesGBID": -1620551894, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 110, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 279.0, + "WeaponDamageDelta": 237.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044213737, + "Name": "CombatStaff_2H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 3837, + "ItemTypesGBID": -1620551894, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 339.0, + "WeaponDamageDelta": 289.0, + "DamageMinVariance": 6.0, + "DamageDeltaVariance": 6.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044213736, + "Name": "CombatStaff_2H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 3836, + "ItemTypesGBID": -1620551894, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 452.0, + "WeaponDamageDelta": 386.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044213735, + "Name": "CombatStaff_2H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 3837, + "ItemTypesGBID": -1620551894, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 528.0, + "WeaponDamageDelta": 451.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044213734, + "Name": "CombatStaff_2H_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 3838, + "ItemTypesGBID": -1620551894, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 619.0, + "WeaponDamageDelta": 528.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044212650, + "Name": "CombatStaff_2H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 327966, + "ItemTypesGBID": -1620551894, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 763.0, + "WeaponDamageDelta": 652.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2044212649, + "Name": "CombatStaff_2H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367191, + "ItemTypesGBID": -1620551894, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 994.0, + "WeaponDamageDelta": 851.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277785730, + "Name": "Mace_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 4645, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 56, + "CostAlt": 5, + "IdentifyCost": 6, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 200, + "DynamicCraftCostRare": 333, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277785729, + "Name": "Mace_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 4646, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277785728, + "Name": "Mace_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 4647, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 86, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2000, + "DynamicCraftCostRare": 3330, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277785727, + "Name": "Mace_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 4648, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 98, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 14, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 11.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2800, + "DynamicCraftCostRare": 4662, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277785726, + "Name": "Mace_1H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 4649, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 110, + "CostAlt": 5, + "IdentifyCost": 42, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 14.0, + "WeaponDamageDelta": 11.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3600, + "DynamicCraftCostRare": 5994, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277785725, + "Name": "Mace_1H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 4650, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 24, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 18.0, + "WeaponDamageDelta": 15.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4800, + "DynamicCraftCostRare": 7992, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277785724, + "Name": "Mace_1H_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 394, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 21.0, + "WeaponDamageDelta": 17.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5400, + "DynamicCraftCostRare": 8991, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277784641, + "Name": "Mace_1H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 4645, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 152, + "CostAlt": 5, + "IdentifyCost": 70, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 33, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 28.0, + "WeaponDamageDelta": 23.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6600, + "DynamicCraftCostRare": 10989, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277784640, + "Name": "Mace_1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 4646, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 31.0, + "WeaponDamageDelta": 25.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277784639, + "Name": "Mace_1H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 4647, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 164, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 37, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 35.0, + "WeaponDamageDelta": 29.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7400, + "DynamicCraftCostRare": 12321, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277784638, + "Name": "Mace_1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 4648, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 86, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 43.0, + "WeaponDamageDelta": 36.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277784637, + "Name": "Mace_1H_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 4649, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 50.0, + "WeaponDamageDelta": 42.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277784636, + "Name": "Mace_1H_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 4650, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 194, + "CostAlt": 5, + "IdentifyCost": 98, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 60.0, + "WeaponDamageDelta": 50.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9400, + "DynamicCraftCostRare": 15651, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277784635, + "Name": "Mace_1H_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 394, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 73.0, + "WeaponDamageDelta": 62.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277783552, + "Name": "Mace_1H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 4645, + "ItemTypesGBID": 4026134, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 206, + "CostAlt": 5, + "IdentifyCost": 106, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 81.0, + "WeaponDamageDelta": 68.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10400, + "DynamicCraftCostRare": 17316, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277783551, + "Name": "Mace_1H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 4646, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 110, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 91.0, + "WeaponDamageDelta": 77.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277783550, + "Name": "Mace_1H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 4647, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 218, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 102.0, + "WeaponDamageDelta": 86.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11200, + "DynamicCraftCostRare": 18648, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277783549, + "Name": "Mace_1H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 4648, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 224, + "CostAlt": 5, + "IdentifyCost": 118, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 113.0, + "WeaponDamageDelta": 95.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11600, + "DynamicCraftCostRare": 19314, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277783548, + "Name": "Mace_1H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 4649, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 139.0, + "WeaponDamageDelta": 117.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277783547, + "Name": "Mace_1H_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 4650, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 160.0, + "WeaponDamageDelta": 136.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277783546, + "Name": "Mace_1H_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 394, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 186.0, + "WeaponDamageDelta": 158.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277782463, + "Name": "Mace_1H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335166, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 251.0, + "WeaponDamageDelta": 214.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -277782462, + "Name": "Mace_1H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367147, + "ItemTypesGBID": 4026134, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 316.0, + "WeaponDamageDelta": 269.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819261289, + "Name": "Sword_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 2, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 0, + "MaxStackSize": 0, + "Cost": 53, + "CostAlt": 5, + "IdentifyCost": 4, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 2.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 200, + "DynamicCraftCostRare": 333, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819261288, + "Name": "Sword_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 5520, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 6, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 65, + "CostAlt": 5, + "IdentifyCost": 12, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 3, + "CrafterRequiredLevel": 3, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 600, + "DynamicCraftCostRare": 999, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819261287, + "Name": "Sword_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 5523, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 77, + "CostAlt": 5, + "IdentifyCost": 20, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 7, + "CrafterRequiredLevel": 7, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 5.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1400, + "DynamicCraftCostRare": 2331, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819261286, + "Name": "Sword_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 5524, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 92, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 12, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 8.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2400, + "DynamicCraftCostRare": 3996, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819261285, + "Name": "Sword_1H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 5521, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 101, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 15, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 11.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3000, + "DynamicCraftCostRare": 4995, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819261284, + "Name": "Sword_1H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 5522, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 113, + "CostAlt": 5, + "IdentifyCost": 44, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 19, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 11.0, + "WeaponDamageDelta": 13.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3800, + "DynamicCraftCostRare": 6327, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819261283, + "Name": "Sword_1H_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 440, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 125, + "CostAlt": 5, + "IdentifyCost": 52, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 12.0, + "WeaponDamageDelta": 16.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4600, + "DynamicCraftCostRare": 7659, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819261282, + "Name": "Sword_1H_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 5525, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 14.0, + "WeaponDamageDelta": 18.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5400, + "DynamicCraftCostRare": 8991, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819260200, + "Name": "Sword_1H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 143, + "CostAlt": 5, + "IdentifyCost": 64, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 16.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6000, + "DynamicCraftCostRare": 9990, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819260199, + "Name": "Sword_1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 5520, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 26.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819260198, + "Name": "Sword_1H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 5523, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 161, + "CostAlt": 5, + "IdentifyCost": 76, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 21.0, + "WeaponDamageDelta": 27.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7200, + "DynamicCraftCostRare": 11988, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819260197, + "Name": "Sword_1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 5524, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 173, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 26.0, + "WeaponDamageDelta": 34.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8000, + "DynamicCraftCostRare": 13320, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819260196, + "Name": "Sword_1H_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 5521, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 86, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 27.0, + "WeaponDamageDelta": 35.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819260195, + "Name": "Sword_1H_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 5522, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 182, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 43, + "CrafterRequiredLevel": 43, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 30.0, + "WeaponDamageDelta": 39.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8600, + "DynamicCraftCostRare": 14319, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819260194, + "Name": "Sword_1H_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 440, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 191, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 46, + "CrafterRequiredLevel": 46, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 35.0, + "WeaponDamageDelta": 46.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9200, + "DynamicCraftCostRare": 15318, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819260193, + "Name": "Sword_1H_108", + "GBID": 0, + "PAD": 0, + "SNOActor": 5525, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 197, + "CostAlt": 5, + "IdentifyCost": 100, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 48, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 40.0, + "WeaponDamageDelta": 53.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9600, + "DynamicCraftCostRare": 15984, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819259111, + "Name": "Sword_1H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 5516, + "ItemTypesGBID": 140782159, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 43.0, + "WeaponDamageDelta": 57.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819259110, + "Name": "Sword_1H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 5520, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 206, + "CostAlt": 5, + "IdentifyCost": 106, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 48.0, + "WeaponDamageDelta": 64.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10400, + "DynamicCraftCostRare": 17316, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819259109, + "Name": "Sword_1H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 5523, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 110, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 53.0, + "WeaponDamageDelta": 70.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819259108, + "Name": "Sword_1H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 5524, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 218, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 5, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 59.0, + "WeaponDamageDelta": 78.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11200, + "DynamicCraftCostRare": 18648, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819259107, + "Name": "Sword_1H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 5521, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 224, + "CostAlt": 5, + "IdentifyCost": 118, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 65.0, + "WeaponDamageDelta": 86.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11600, + "DynamicCraftCostRare": 19314, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819259106, + "Name": "Sword_1H_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 5522, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 78.0, + "WeaponDamageDelta": 103.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819259105, + "Name": "Sword_1H_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 440, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 90.0, + "WeaponDamageDelta": 120.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819259104, + "Name": "Sword_1H_208", + "GBID": 0, + "PAD": 0, + "SNOActor": 5525, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 104.0, + "WeaponDamageDelta": 138.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819258022, + "Name": "Sword_1H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335133, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 138.0, + "WeaponDamageDelta": 184.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -819258021, + "Name": "Sword_1H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367139, + "ItemTypesGBID": 140782159, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 168.0, + "WeaponDamageDelta": 224.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507045753, + "Name": "Axe_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 6319, + "ItemTypesGBID": 119458520, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 6, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 65, + "CostAlt": 5, + "IdentifyCost": 12, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 3, + "CrafterRequiredLevel": 3, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 2.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 600, + "DynamicCraftCostRare": 999, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507045752, + "Name": "Axe_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 6320, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 22, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 8, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 14.0, + "WeaponDamageDelta": 2.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1600, + "DynamicCraftCostRare": 2664, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507045751, + "Name": "Axe_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 6321, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 19, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 104, + "CostAlt": 5, + "IdentifyCost": 38, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 16, + "CrafterRequiredLevel": 16, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 45.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3200, + "DynamicCraftCostRare": 5328, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507045750, + "Name": "Axe_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 6322, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 119, + "CostAlt": 5, + "IdentifyCost": 48, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 21, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 60.0, + "WeaponDamageDelta": 12.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4200, + "DynamicCraftCostRare": 6993, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507045749, + "Name": "Axe_2H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 6323, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 140, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 29, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 85.0, + "WeaponDamageDelta": 18.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5800, + "DynamicCraftCostRare": 9657, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507044664, + "Name": "Axe_2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 6319, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 152, + "CostAlt": 5, + "IdentifyCost": 70, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 33, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 108.0, + "WeaponDamageDelta": 22.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6600, + "DynamicCraftCostRare": 10989, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507044663, + "Name": "Axe_2H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 6320, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 164, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 37, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 139.0, + "WeaponDamageDelta": 29.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7400, + "DynamicCraftCostRare": 12321, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507044662, + "Name": "Axe_2H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 6321, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 86, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 177.0, + "WeaponDamageDelta": 36.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507044661, + "Name": "Axe_2H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 6322, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 188, + "CostAlt": 5, + "IdentifyCost": 94, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 225.0, + "WeaponDamageDelta": 46.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9000, + "DynamicCraftCostRare": 14985, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507044660, + "Name": "Axe_2H_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 6323, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 318.0, + "WeaponDamageDelta": 66.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507043575, + "Name": "Axe_2H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 6319, + "ItemTypesGBID": 119458520, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 110, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 416.0, + "WeaponDamageDelta": 86.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507043574, + "Name": "Axe_2H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 6320, + "ItemTypesGBID": 119458520, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 224, + "CostAlt": 5, + "IdentifyCost": 118, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 3, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 545.0, + "WeaponDamageDelta": 114.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11600, + "DynamicCraftCostRare": 19314, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507043573, + "Name": "Axe_2H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 6321, + "ItemTypesGBID": 119458520, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 684.0, + "WeaponDamageDelta": 145.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507043572, + "Name": "Axe_2H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 6322, + "ItemTypesGBID": 119458520, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 802.0, + "WeaponDamageDelta": 171.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507043571, + "Name": "Axe_2H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 6323, + "ItemTypesGBID": 119458520, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 940.0, + "WeaponDamageDelta": 202.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507042486, + "Name": "Axe_2H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335159, + "ItemTypesGBID": 119458520, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1048.0, + "WeaponDamageDelta": 226.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -507042485, + "Name": "Axe_2H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367145, + "ItemTypesGBID": 119458520, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1384.0, + "WeaponDamageDelta": 301.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238650337, + "Name": "Mace_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 6330, + "ItemTypesGBID": 89494384, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 83, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 17.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238650336, + "Name": "Mace_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 6331, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 95, + "CostAlt": 5, + "IdentifyCost": 32, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 13, + "CrafterRequiredLevel": 13, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 46.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2600, + "DynamicCraftCostRare": 4329, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238650335, + "Name": "Mace_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 6332, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 107, + "CostAlt": 5, + "IdentifyCost": 40, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 17, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 55.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3400, + "DynamicCraftCostRare": 5661, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238650334, + "Name": "Mace_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 6333, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 4, + "MaxStackSize": 0, + "Cost": 119, + "CostAlt": 5, + "IdentifyCost": 48, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 21, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 70.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4200, + "DynamicCraftCostRare": 6993, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238650333, + "Name": "Mace_2H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 6334, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 6, + "MaxStackSize": 0, + "Cost": 131, + "CostAlt": 5, + "IdentifyCost": 56, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 86.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5000, + "DynamicCraftCostRare": 8325, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238650332, + "Name": "Mace_2H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 6335, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 6, + "MaxStackSize": 0, + "Cost": 140, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 29, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 102.0, + "WeaponDamageDelta": 8.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5800, + "DynamicCraftCostRare": 9657, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238649248, + "Name": "Mace_2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 6330, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 149, + "CostAlt": 5, + "IdentifyCost": 68, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 32, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 124.0, + "WeaponDamageDelta": 11.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6400, + "DynamicCraftCostRare": 10656, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238649247, + "Name": "Mace_2H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 6331, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 150.0, + "WeaponDamageDelta": 13.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238649246, + "Name": "Mace_2H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 6332, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 167, + "CostAlt": 5, + "IdentifyCost": 80, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 38, + "CrafterRequiredLevel": 38, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 182.0, + "WeaponDamageDelta": 16.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7600, + "DynamicCraftCostRare": 12654, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238649245, + "Name": "Mace_2H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 6333, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 86, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 219.0, + "WeaponDamageDelta": 19.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238649244, + "Name": "Mace_2H_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 6334, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 264.0, + "WeaponDamageDelta": 23.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238649243, + "Name": "Mace_2H_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 6335, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 194, + "CostAlt": 5, + "IdentifyCost": 98, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 319.0, + "WeaponDamageDelta": 29.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9400, + "DynamicCraftCostRare": 15651, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238648159, + "Name": "Mace_2H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 6330, + "ItemTypesGBID": 89494384, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 203, + "CostAlt": 5, + "IdentifyCost": 104, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 428.0, + "WeaponDamageDelta": 38.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10200, + "DynamicCraftCostRare": 16983, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238648158, + "Name": "Mace_2H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 6331, + "ItemTypesGBID": 89494384, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 110, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 527.0, + "WeaponDamageDelta": 48.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238648157, + "Name": "Mace_2H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 6332, + "ItemTypesGBID": 89494384, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 650.0, + "WeaponDamageDelta": 61.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238648156, + "Name": "Mace_2H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 6333, + "ItemTypesGBID": 89494384, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 875.0, + "WeaponDamageDelta": 84.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238648155, + "Name": "Mace_2H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 6334, + "ItemTypesGBID": 89494384, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1027.0, + "WeaponDamageDelta": 100.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238648154, + "Name": "Mace_2H_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 6335, + "ItemTypesGBID": 89494384, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1204.0, + "WeaponDamageDelta": 119.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.9, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238647070, + "Name": "Mace_2H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335169, + "ItemTypesGBID": 89494384, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1347.0, + "WeaponDamageDelta": 134.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -238647069, + "Name": "Mace_2H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367151, + "ItemTypesGBID": 89494384, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1737.0, + "WeaponDamageDelta": 175.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78426400, + "Name": "Polearm_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 4864, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 11.0, + "WeaponDamageDelta": 2.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78426401, + "Name": "Polearm_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 4865, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 83, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 15.0, + "WeaponDamageDelta": 2.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78426402, + "Name": "Polearm_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 4866, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 95, + "CostAlt": 5, + "IdentifyCost": 32, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 13, + "CrafterRequiredLevel": 13, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 41.0, + "WeaponDamageDelta": 8.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2600, + "DynamicCraftCostRare": 4329, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78426403, + "Name": "Polearm_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 4867, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 107, + "CostAlt": 5, + "IdentifyCost": 40, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 17, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 50.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3400, + "DynamicCraftCostRare": 5661, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78426404, + "Name": "Polearm_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 4868, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 119, + "CostAlt": 5, + "IdentifyCost": 48, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 21, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 63.0, + "WeaponDamageDelta": 13.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4200, + "DynamicCraftCostRare": 6993, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78426405, + "Name": "Polearm_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 4869, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 4, + "MaxStackSize": 0, + "Cost": 131, + "CostAlt": 5, + "IdentifyCost": 56, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 77.0, + "WeaponDamageDelta": 15.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5000, + "DynamicCraftCostRare": 8325, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78426406, + "Name": "Polearm_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 4870, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 85.0, + "WeaponDamageDelta": 17.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5400, + "DynamicCraftCostRare": 8991, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78426407, + "Name": "Polearm_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 4871, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 4, + "MaxStackSize": 0, + "Cost": 146, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 31, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 103.0, + "WeaponDamageDelta": 21.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6200, + "DynamicCraftCostRare": 10323, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78427489, + "Name": "Polearm_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 4864, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 152, + "CostAlt": 5, + "IdentifyCost": 70, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 33, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 117.0, + "WeaponDamageDelta": 24.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6600, + "DynamicCraftCostRare": 10989, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78427490, + "Name": "Polearm_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 4865, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 161, + "CostAlt": 5, + "IdentifyCost": 76, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 141.0, + "WeaponDamageDelta": 28.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7200, + "DynamicCraftCostRare": 11988, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78427491, + "Name": "Polearm_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 4866, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 167, + "CostAlt": 5, + "IdentifyCost": 80, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 38, + "CrafterRequiredLevel": 38, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 160.0, + "WeaponDamageDelta": 33.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7600, + "DynamicCraftCostRare": 12654, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78427492, + "Name": "Polearm_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 4867, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 173, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 181.0, + "WeaponDamageDelta": 37.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8000, + "DynamicCraftCostRare": 13320, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78427493, + "Name": "Polearm_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 4868, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 44, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 179, + "CostAlt": 5, + "IdentifyCost": 88, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 204.0, + "WeaponDamageDelta": 42.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8400, + "DynamicCraftCostRare": 13986, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78427494, + "Name": "Polearm_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 4869, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 232.0, + "WeaponDamageDelta": 48.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78427495, + "Name": "Polearm_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 4870, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 191, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 46, + "CrafterRequiredLevel": 46, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 261.0, + "WeaponDamageDelta": 54.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9200, + "DynamicCraftCostRare": 15318, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78427496, + "Name": "Polearm_108", + "GBID": 0, + "PAD": 0, + "SNOActor": 4871, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 197, + "CostAlt": 5, + "IdentifyCost": 100, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 48, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 310.0, + "WeaponDamageDelta": 64.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9600, + "DynamicCraftCostRare": 15984, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78428578, + "Name": "Polearm_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 4864, + "ItemTypesGBID": -1203595600, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 203, + "CostAlt": 5, + "IdentifyCost": 104, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 373.0, + "WeaponDamageDelta": 78.0, + "DamageMinVariance": 6.0, + "DamageDeltaVariance": 6.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10200, + "DynamicCraftCostRare": 16983, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78428579, + "Name": "Polearm_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 4865, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 209, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 428.0, + "WeaponDamageDelta": 89.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10600, + "DynamicCraftCostRare": 17649, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78428580, + "Name": "Polearm_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 4866, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 3, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 490.0, + "WeaponDamageDelta": 102.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78428581, + "Name": "Polearm_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 4867, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 563.0, + "WeaponDamageDelta": 118.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78428582, + "Name": "Polearm_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 4868, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 227, + "CostAlt": 5, + "IdentifyCost": 120, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 5, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 645.0, + "WeaponDamageDelta": 136.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11800, + "DynamicCraftCostRare": 19647, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78428583, + "Name": "Polearm_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 4869, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 7, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 757.0, + "WeaponDamageDelta": 161.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78428584, + "Name": "Polearm_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 4870, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 888.0, + "WeaponDamageDelta": 190.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78428585, + "Name": "Polearm_208", + "GBID": 0, + "PAD": 0, + "SNOActor": 4871, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1041.0, + "WeaponDamageDelta": 224.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 0.95, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78429667, + "Name": "Polearm_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335176, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1163.0, + "WeaponDamageDelta": 252.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.05, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 78429668, + "Name": "Polearm_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367153, + "ItemTypesGBID": -1203595600, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1497.0, + "WeaponDamageDelta": 326.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.05, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780125896, + "Name": "Sword_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 6342, + "ItemTypesGBID": -1307049751, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 7, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 68, + "CostAlt": 5, + "IdentifyCost": 14, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 4, + "CrafterRequiredLevel": 4, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 8.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 800, + "DynamicCraftCostRare": 1332, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780125895, + "Name": "Sword_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 6344, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 83, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 12.0, + "WeaponDamageDelta": 5.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780125894, + "Name": "Sword_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 6343, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 101, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 15, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 36.0, + "WeaponDamageDelta": 17.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3000, + "DynamicCraftCostRare": 4995, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780125893, + "Name": "Sword_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 6345, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 113, + "CostAlt": 5, + "IdentifyCost": 44, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 19, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 44.0, + "WeaponDamageDelta": 21.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3800, + "DynamicCraftCostRare": 6327, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780125892, + "Name": "Sword_2H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 483, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 125, + "CostAlt": 5, + "IdentifyCost": 52, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 53.0, + "WeaponDamageDelta": 25.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4600, + "DynamicCraftCostRare": 7659, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780125891, + "Name": "Sword_2H_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 6346, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 63.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5400, + "DynamicCraftCostRare": 8991, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780124807, + "Name": "Sword_2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 6342, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 149, + "CostAlt": 5, + "IdentifyCost": 68, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 32, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 81.0, + "WeaponDamageDelta": 39.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6400, + "DynamicCraftCostRare": 10656, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780124806, + "Name": "Sword_2H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 6344, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 96.0, + "WeaponDamageDelta": 46.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780124805, + "Name": "Sword_2H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 6343, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 167, + "CostAlt": 5, + "IdentifyCost": 80, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 38, + "CrafterRequiredLevel": 38, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 114.0, + "WeaponDamageDelta": 55.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7600, + "DynamicCraftCostRare": 12654, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780124804, + "Name": "Sword_2H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 6345, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 86, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 137.0, + "WeaponDamageDelta": 67.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780124803, + "Name": "Sword_2H_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 483, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 162.0, + "WeaponDamageDelta": 79.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780124802, + "Name": "Sword_2H_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 6346, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 194, + "CostAlt": 5, + "IdentifyCost": 98, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 193.0, + "WeaponDamageDelta": 94.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9400, + "DynamicCraftCostRare": 15651, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780123718, + "Name": "Sword_2H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 6342, + "ItemTypesGBID": -1307049751, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 239.0, + "WeaponDamageDelta": 116.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780123717, + "Name": "Sword_2H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 6344, + "ItemTypesGBID": -1307049751, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 334.0, + "WeaponDamageDelta": 164.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780123716, + "Name": "Sword_2H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 6343, + "ItemTypesGBID": -1307049751, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 381.0, + "WeaponDamageDelta": 187.0, + "DamageMinVariance": 6.0, + "DamageDeltaVariance": 6.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780123715, + "Name": "Sword_2H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 6345, + "ItemTypesGBID": -1307049751, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 507.0, + "WeaponDamageDelta": 249.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780123714, + "Name": "Sword_2H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 483, + "ItemTypesGBID": -1307049751, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 593.0, + "WeaponDamageDelta": 292.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780123713, + "Name": "Sword_2H_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 6346, + "ItemTypesGBID": -1307049751, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 694.0, + "WeaponDamageDelta": 342.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780122629, + "Name": "Sword_2H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335139, + "ItemTypesGBID": -1307049751, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 856.0, + "WeaponDamageDelta": 424.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -780122628, + "Name": "Sword_2H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367141, + "ItemTypesGBID": -1307049751, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1137.0, + "WeaponDamageDelta": 565.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468806120, + "Name": "Bow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 3445, + "ItemTypesGBID": 110504, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 3, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 56, + "CostAlt": 5, + "IdentifyCost": 6, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 200, + "DynamicCraftCostRare": 333, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468806119, + "Name": "Bow_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 3446, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 22, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 8, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 16.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1600, + "DynamicCraftCostRare": 2664, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468806118, + "Name": "Bow_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 3447, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 92, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 12, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4.0, + "WeaponDamageDelta": 21.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2400, + "DynamicCraftCostRare": 3996, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468806117, + "Name": "Bow_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 3448, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 110, + "CostAlt": 5, + "IdentifyCost": 42, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 29.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3600, + "DynamicCraftCostRare": 5994, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468806116, + "Name": "Bow_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 3449, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 26, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 125, + "CostAlt": 5, + "IdentifyCost": 52, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 23, + "CrafterRequiredLevel": 23, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 7.0, + "WeaponDamageDelta": 35.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4600, + "DynamicCraftCostRare": 7659, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468806115, + "Name": "Bow_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 3450, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 41.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5400, + "DynamicCraftCostRare": 8991, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468805031, + "Name": "Bow_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 3445, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 143, + "CostAlt": 5, + "IdentifyCost": 64, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 45.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6000, + "DynamicCraftCostRare": 9990, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468805030, + "Name": "Bow_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 3446, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 155, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 34, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 12.0, + "WeaponDamageDelta": 55.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6800, + "DynamicCraftCostRare": 11322, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468805029, + "Name": "Bow_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 3447, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 164, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 37, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 14.0, + "WeaponDamageDelta": 64.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7400, + "DynamicCraftCostRare": 12321, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468805028, + "Name": "Bow_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 3448, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 173, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 16.0, + "WeaponDamageDelta": 75.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8000, + "DynamicCraftCostRare": 13320, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468805027, + "Name": "Bow_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 3449, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 45, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 182, + "CostAlt": 5, + "IdentifyCost": 90, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 43, + "CrafterRequiredLevel": 43, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 19.0, + "WeaponDamageDelta": 87.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8600, + "DynamicCraftCostRare": 14319, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468805026, + "Name": "Bow_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 3450, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 194, + "CostAlt": 5, + "IdentifyCost": 98, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 23.0, + "WeaponDamageDelta": 107.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9400, + "DynamicCraftCostRare": 15651, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468803942, + "Name": "Bow_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 3445, + "ItemTypesGBID": 110504, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 203, + "CostAlt": 5, + "IdentifyCost": 104, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 30.0, + "WeaponDamageDelta": 141.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10200, + "DynamicCraftCostRare": 16983, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468803941, + "Name": "Bow_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 3446, + "ItemTypesGBID": 110504, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 110, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 37.0, + "WeaponDamageDelta": 172.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468803940, + "Name": "Bow_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 3447, + "ItemTypesGBID": 110504, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 44.0, + "WeaponDamageDelta": 208.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468803939, + "Name": "Bow_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 3448, + "ItemTypesGBID": 110504, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 58.0, + "WeaponDamageDelta": 277.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468803938, + "Name": "Bow_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 3449, + "ItemTypesGBID": 110504, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 68.0, + "WeaponDamageDelta": 324.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468803937, + "Name": "Bow_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 3450, + "ItemTypesGBID": 110504, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 80.0, + "WeaponDamageDelta": 378.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468802853, + "Name": "Bow_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335186, + "ItemTypesGBID": 110504, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 109.0, + "WeaponDamageDelta": 515.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -468802852, + "Name": "Bow_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367157, + "ItemTypesGBID": 110504, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 450, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 143.0, + "WeaponDamageDelta": 672.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 502, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329341086, + "Name": "Crossbow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 497, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 6, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 65, + "CostAlt": 5, + "IdentifyCost": 12, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 3, + "CrafterRequiredLevel": 3, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 8.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 600, + "DynamicCraftCostRare": 999, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329341085, + "Name": "Crossbow_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 6611, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 10, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 77, + "CostAlt": 5, + "IdentifyCost": 20, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 7, + "CrafterRequiredLevel": 7, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 11.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1400, + "DynamicCraftCostRare": 2331, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329341084, + "Name": "Crossbow_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 6612, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 14, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 89, + "CostAlt": 5, + "IdentifyCost": 28, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 11, + "CrafterRequiredLevel": 11, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 15.0, + "WeaponDamageDelta": 2.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2200, + "DynamicCraftCostRare": 3663, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329341083, + "Name": "Crossbow_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 6613, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 101, + "CostAlt": 5, + "IdentifyCost": 36, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 15, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 19.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3000, + "DynamicCraftCostRare": 4995, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329341082, + "Name": "Crossbow_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 6614, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 22, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 113, + "CostAlt": 5, + "IdentifyCost": 44, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 19, + "CrafterRequiredLevel": 19, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 23.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3800, + "DynamicCraftCostRare": 6327, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329341081, + "Name": "Crossbow_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 6615, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 122, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 22, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 27.0, + "WeaponDamageDelta": 5.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4400, + "DynamicCraftCostRare": 7326, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329341080, + "Name": "Crossbow_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 98159, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 131, + "CostAlt": 5, + "IdentifyCost": 56, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 31.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5000, + "DynamicCraftCostRare": 8325, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329339997, + "Name": "Crossbow_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 497, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 140, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 29, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 35.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5800, + "DynamicCraftCostRare": 9657, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329339996, + "Name": "Crossbow_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 6611, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 34, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 149, + "CostAlt": 5, + "IdentifyCost": 68, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 32, + "CrafterRequiredLevel": 32, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 42.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6400, + "DynamicCraftCostRare": 10656, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329339995, + "Name": "Crossbow_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 6612, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 161, + "CostAlt": 5, + "IdentifyCost": 76, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 54.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7200, + "DynamicCraftCostRare": 11988, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329339994, + "Name": "Crossbow_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 6613, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 170, + "CostAlt": 5, + "IdentifyCost": 82, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 64.0, + "WeaponDamageDelta": 11.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7800, + "DynamicCraftCostRare": 12987, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329339993, + "Name": "Crossbow_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 6614, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 44, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 179, + "CostAlt": 5, + "IdentifyCost": 88, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 76.0, + "WeaponDamageDelta": 13.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8400, + "DynamicCraftCostRare": 13986, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329339992, + "Name": "Crossbow_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 6615, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 194, + "CostAlt": 5, + "IdentifyCost": 98, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 102.0, + "WeaponDamageDelta": 18.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9400, + "DynamicCraftCostRare": 15651, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329339991, + "Name": "Crossbow_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 98159, + "ItemTypesGBID": -1338851342, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 128.0, + "WeaponDamageDelta": 23.0, + "DamageMinVariance": 6.0, + "DamageDeltaVariance": 6.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329338908, + "Name": "Crossbow_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 497, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 206, + "CostAlt": 5, + "IdentifyCost": 106, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 149.0, + "WeaponDamageDelta": 28.0, + "DamageMinVariance": 6.0, + "DamageDeltaVariance": 6.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10400, + "DynamicCraftCostRare": 17316, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329338907, + "Name": "Crossbow_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 6611, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 209, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 3, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 161.0, + "WeaponDamageDelta": 31.0, + "DamageMinVariance": 6.0, + "DamageDeltaVariance": 6.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10600, + "DynamicCraftCostRare": 17649, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329338906, + "Name": "Crossbow_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 6612, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 187.0, + "WeaponDamageDelta": 35.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329338905, + "Name": "Crossbow_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 6613, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 224, + "CostAlt": 5, + "IdentifyCost": 118, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 5, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 233.0, + "WeaponDamageDelta": 45.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11600, + "DynamicCraftCostRare": 19314, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329338904, + "Name": "Crossbow_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 6614, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 7, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 296.0, + "WeaponDamageDelta": 59.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329338903, + "Name": "Crossbow_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 6615, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 350.0, + "WeaponDamageDelta": 71.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329338902, + "Name": "Crossbow_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 98159, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 413.0, + "WeaponDamageDelta": 85.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329337819, + "Name": "Crossbow_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335189, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 574.0, + "WeaponDamageDelta": 121.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -329337818, + "Name": "Crossbow_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367159, + "ItemTypesGBID": -1338851342, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 500, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 779.0, + "WeaponDamageDelta": 166.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660299, + "Name": "HandXbow_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 82626, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660300, + "Name": "HandXbow_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 82639, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 9, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 74, + "CostAlt": 5, + "IdentifyCost": 18, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 6, + "CrafterRequiredLevel": 6, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1200, + "DynamicCraftCostRare": 1998, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660301, + "Name": "HandXbow_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 145082, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 22, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 8, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 12.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1600, + "DynamicCraftCostRare": 2664, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660302, + "Name": "HandXbow_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 145083, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 86, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 14.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2000, + "DynamicCraftCostRare": 3330, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660303, + "Name": "HandXbow_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 145084, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 98, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 14, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4.0, + "WeaponDamageDelta": 18.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2800, + "DynamicCraftCostRare": 4662, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660304, + "Name": "HandXbow_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 145086, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 107, + "CostAlt": 5, + "IdentifyCost": 40, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 17, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4.0, + "WeaponDamageDelta": 21.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3400, + "DynamicCraftCostRare": 5661, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660305, + "Name": "HandXbow_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 145087, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 122, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 22, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 5.0, + "WeaponDamageDelta": 25.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4400, + "DynamicCraftCostRare": 7326, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660306, + "Name": "HandXbow_008", + "GBID": 0, + "PAD": 0, + "SNOActor": 145088, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 26, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 29.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5200, + "DynamicCraftCostRare": 8658, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135661388, + "Name": "HandXbow_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 82626, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5400, + "DynamicCraftCostRare": 8991, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135661389, + "Name": "HandXbow_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 82639, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 152, + "CostAlt": 5, + "IdentifyCost": 70, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 33, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 8.0, + "WeaponDamageDelta": 39.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6600, + "DynamicCraftCostRare": 10989, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135661390, + "Name": "HandXbow_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 145082, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 43.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135661391, + "Name": "HandXbow_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 145083, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 170, + "CostAlt": 5, + "IdentifyCost": 82, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 11.0, + "WeaponDamageDelta": 53.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7800, + "DynamicCraftCostRare": 12987, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135661392, + "Name": "HandXbow_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 145084, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 86, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 12.0, + "WeaponDamageDelta": 58.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135661393, + "Name": "HandXbow_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 145086, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 14.0, + "WeaponDamageDelta": 68.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135661394, + "Name": "HandXbow_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 145087, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 48, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 191, + "CostAlt": 5, + "IdentifyCost": 96, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 46, + "CrafterRequiredLevel": 46, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 16.0, + "WeaponDamageDelta": 75.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9200, + "DynamicCraftCostRare": 15318, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135661395, + "Name": "HandXbow_108", + "GBID": 0, + "PAD": 0, + "SNOActor": 145088, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 197, + "CostAlt": 5, + "IdentifyCost": 100, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 48, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 18.0, + "WeaponDamageDelta": 87.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9600, + "DynamicCraftCostRare": 15984, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135662477, + "Name": "HandXbow_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 82626, + "ItemTypesGBID": 763102523, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 203, + "CostAlt": 5, + "IdentifyCost": 104, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 21.0, + "WeaponDamageDelta": 100.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10200, + "DynamicCraftCostRare": 16983, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135662478, + "Name": "HandXbow_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 82639, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 209, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 24.0, + "WeaponDamageDelta": 111.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10600, + "DynamicCraftCostRare": 17649, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135662479, + "Name": "HandXbow_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 145082, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 3, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 26.0, + "WeaponDamageDelta": 122.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135662480, + "Name": "HandXbow_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 145083, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 29.0, + "WeaponDamageDelta": 135.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135662481, + "Name": "HandXbow_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 145084, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 227, + "CostAlt": 5, + "IdentifyCost": 120, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 5, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 32.0, + "WeaponDamageDelta": 149.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11800, + "DynamicCraftCostRare": 19647, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135662482, + "Name": "HandXbow_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 145086, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 7, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 37.0, + "WeaponDamageDelta": 172.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135662483, + "Name": "HandXbow_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 145087, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 42.0, + "WeaponDamageDelta": 198.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135662484, + "Name": "HandXbow_208", + "GBID": 0, + "PAD": 0, + "SNOActor": 145088, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 48.0, + "WeaponDamageDelta": 227.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135663566, + "Name": "HandXbow_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335369, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 97.0, + "WeaponDamageDelta": 452.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135663567, + "Name": "HandXbow_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367185, + "ItemTypesGBID": 763102523, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 126.0, + "WeaponDamageDelta": 588.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.6, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785198315, + "Name": "Spear_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5451, + "ItemTypesGBID": 140519163, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 62, + "CostAlt": 5, + "IdentifyCost": 10, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 5.0, + "WeaponDamageDelta": 2.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 200, + "DynamicCraftCostRare": 333, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785198316, + "Name": "Spear_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 5452, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 22, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 8, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1600, + "DynamicCraftCostRare": 2664, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785198317, + "Name": "Spear_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 5453, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 98, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 14, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 13.0, + "WeaponDamageDelta": 5.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2800, + "DynamicCraftCostRare": 4662, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785198318, + "Name": "Spear_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 5454, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 116, + "CostAlt": 5, + "IdentifyCost": 46, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 20, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 17.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4000, + "DynamicCraftCostRare": 6660, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785198319, + "Name": "Spear_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 5455, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 26, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 22.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5200, + "DynamicCraftCostRare": 8658, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785199404, + "Name": "Spear_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 5451, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 143, + "CostAlt": 5, + "IdentifyCost": 64, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 26.0, + "WeaponDamageDelta": 12.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6000, + "DynamicCraftCostRare": 9990, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785199405, + "Name": "Spear_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 5452, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 155, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 34, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 33.0, + "WeaponDamageDelta": 15.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6800, + "DynamicCraftCostRare": 11322, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785199406, + "Name": "Spear_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 5453, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 167, + "CostAlt": 5, + "IdentifyCost": 80, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 38, + "CrafterRequiredLevel": 38, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 41.0, + "WeaponDamageDelta": 19.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7600, + "DynamicCraftCostRare": 12654, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785199407, + "Name": "Spear_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 5454, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 57.0, + "WeaponDamageDelta": 27.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785199408, + "Name": "Spear_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 5455, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 52, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 203, + "CostAlt": 5, + "IdentifyCost": 104, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 51, + "CrafterRequiredLevel": 51, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 86.0, + "WeaponDamageDelta": 41.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10200, + "DynamicCraftCostRare": 16983, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785200493, + "Name": "Spear_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 5451, + "ItemTypesGBID": 140519163, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 110, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 102.0, + "WeaponDamageDelta": 49.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785200494, + "Name": "Spear_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 5452, + "ItemTypesGBID": 140519163, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 120.0, + "WeaponDamageDelta": 57.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785200495, + "Name": "Spear_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 5453, + "ItemTypesGBID": 140519163, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 155.0, + "WeaponDamageDelta": 74.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785200496, + "Name": "Spear_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 5454, + "ItemTypesGBID": 140519163, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 180.0, + "WeaponDamageDelta": 87.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785200497, + "Name": "Spear_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 5455, + "ItemTypesGBID": 140519163, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 209.0, + "WeaponDamageDelta": 101.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785201582, + "Name": "Spear_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335179, + "ItemTypesGBID": 140519163, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 281.0, + "WeaponDamageDelta": 137.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1785201583, + "Name": "Spear_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367155, + "ItemTypesGBID": 140519163, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213659, + "SNORareNameSuffixStringList": 213681, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 353.0, + "WeaponDamageDelta": 173.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229180284, + "Name": "Staff_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 5483, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10.0, + "WeaponDamageDelta": 5.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229180283, + "Name": "Staff_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 5484, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 86, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 30.0, + "WeaponDamageDelta": 14.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2000, + "DynamicCraftCostRare": 3330, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229180282, + "Name": "Staff_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 5485, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 98, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 14, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 37.0, + "WeaponDamageDelta": 17.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2800, + "DynamicCraftCostRare": 4662, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229180281, + "Name": "Staff_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 5486, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 110, + "CostAlt": 5, + "IdentifyCost": 42, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 46.0, + "WeaponDamageDelta": 22.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3600, + "DynamicCraftCostRare": 5994, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229180280, + "Name": "Staff_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 5487, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 122, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 22, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 57.0, + "WeaponDamageDelta": 27.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4400, + "DynamicCraftCostRare": 7326, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229180279, + "Name": "Staff_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 438, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 26, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 69.0, + "WeaponDamageDelta": 33.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5200, + "DynamicCraftCostRare": 8658, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229180278, + "Name": "Staff_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 5488, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 146, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 31, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 86.0, + "WeaponDamageDelta": 41.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6200, + "DynamicCraftCostRare": 10323, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229179195, + "Name": "Staff_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 5483, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 111.0, + "WeaponDamageDelta": 54.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229179194, + "Name": "Staff_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 5484, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 164, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 37, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 126.0, + "WeaponDamageDelta": 61.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7400, + "DynamicCraftCostRare": 12321, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229179193, + "Name": "Staff_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 5485, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 42, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 173, + "CostAlt": 5, + "IdentifyCost": 84, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 40, + "CrafterRequiredLevel": 40, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 151.0, + "WeaponDamageDelta": 73.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8000, + "DynamicCraftCostRare": 13320, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229179192, + "Name": "Staff_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 5486, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 44, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 179, + "CostAlt": 5, + "IdentifyCost": 88, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 171.0, + "WeaponDamageDelta": 83.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8400, + "DynamicCraftCostRare": 13986, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229179191, + "Name": "Staff_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 5487, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 188, + "CostAlt": 5, + "IdentifyCost": 94, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 204.0, + "WeaponDamageDelta": 99.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9000, + "DynamicCraftCostRare": 14985, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229179190, + "Name": "Staff_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 438, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 49, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 194, + "CostAlt": 5, + "IdentifyCost": 98, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 47, + "CrafterRequiredLevel": 47, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 231.0, + "WeaponDamageDelta": 113.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9400, + "DynamicCraftCostRare": 15651, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229179189, + "Name": "Staff_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 5488, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 288.0, + "WeaponDamageDelta": 141.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229178106, + "Name": "Staff_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 5483, + "ItemTypesGBID": 140658708, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 53, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 206, + "CostAlt": 5, + "IdentifyCost": 106, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 52, + "CrafterRequiredLevel": 52, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 330.0, + "WeaponDamageDelta": 162.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10400, + "DynamicCraftCostRare": 17316, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229178105, + "Name": "Staff_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 5484, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 110, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 378.0, + "WeaponDamageDelta": 185.0, + "DamageMinVariance": 6.0, + "DamageDeltaVariance": 6.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229178104, + "Name": "Staff_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 5485, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 218, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 432.0, + "WeaponDamageDelta": 212.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11200, + "DynamicCraftCostRare": 18648, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229178103, + "Name": "Staff_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 5486, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 224, + "CostAlt": 5, + "IdentifyCost": 118, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 5, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 494.0, + "WeaponDamageDelta": 242.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11600, + "DynamicCraftCostRare": 19314, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229178102, + "Name": "Staff_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 5487, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 620.0, + "WeaponDamageDelta": 305.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229178101, + "Name": "Staff_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 438, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 727.0, + "WeaponDamageDelta": 359.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229178100, + "Name": "Staff_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 5488, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 852.0, + "WeaponDamageDelta": 421.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229177017, + "Name": "Staff_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 328169, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 950.0, + "WeaponDamageDelta": 470.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -229177016, + "Name": "Staff_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367162, + "ItemTypesGBID": 140658708, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1229.0, + "WeaponDamageDelta": 610.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098089914, + "Name": "Wand_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 487, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 5.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098089915, + "Name": "Wand_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 6421, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 9, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 74, + "CostAlt": 5, + "IdentifyCost": 18, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 6, + "CrafterRequiredLevel": 6, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1200, + "DynamicCraftCostRare": 1998, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098089916, + "Name": "Wand_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 6422, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 13, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 86, + "CostAlt": 5, + "IdentifyCost": 26, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 10, + "CrafterRequiredLevel": 10, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 8.0, + "WeaponDamageDelta": 5.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2000, + "DynamicCraftCostRare": 3330, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098089917, + "Name": "Wand_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 6423, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 16, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 95, + "CostAlt": 5, + "IdentifyCost": 32, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 13, + "CrafterRequiredLevel": 13, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 9.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2600, + "DynamicCraftCostRare": 4329, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098089918, + "Name": "Wand_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 6424, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 107, + "CostAlt": 5, + "IdentifyCost": 40, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 17, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 11.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3400, + "DynamicCraftCostRare": 5661, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098089919, + "Name": "Wand_006", + "GBID": 0, + "PAD": 0, + "SNOActor": 6425, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 119, + "CostAlt": 5, + "IdentifyCost": 48, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 21, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 13.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4200, + "DynamicCraftCostRare": 6993, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098089920, + "Name": "Wand_007", + "GBID": 0, + "PAD": 0, + "SNOActor": 6426, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 131, + "CostAlt": 5, + "IdentifyCost": 56, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 15.0, + "WeaponDamageDelta": 12.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5000, + "DynamicCraftCostRare": 8325, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 517490721, + "Name": "Wand_007a", + "GBID": 0, + "PAD": 0, + "SNOActor": 6426, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 140, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 29, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 17.0, + "WeaponDamageDelta": 14.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5800, + "DynamicCraftCostRare": 9657, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098091003, + "Name": "Wand_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 487, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 152, + "CostAlt": 5, + "IdentifyCost": 70, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 33, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 21.0, + "WeaponDamageDelta": 17.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6600, + "DynamicCraftCostRare": 10989, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098091004, + "Name": "Wand_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 6421, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 38, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 161, + "CostAlt": 5, + "IdentifyCost": 76, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 36, + "CrafterRequiredLevel": 36, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 24.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7200, + "DynamicCraftCostRare": 11988, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098091005, + "Name": "Wand_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 6422, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 170, + "CostAlt": 5, + "IdentifyCost": 82, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 28.0, + "WeaponDamageDelta": 23.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7800, + "DynamicCraftCostRare": 12987, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098091006, + "Name": "Wand_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 6423, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 44, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 179, + "CostAlt": 5, + "IdentifyCost": 88, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 42, + "CrafterRequiredLevel": 42, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 33.0, + "WeaponDamageDelta": 27.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8400, + "DynamicCraftCostRare": 13986, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098091007, + "Name": "Wand_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 6424, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 188, + "CostAlt": 5, + "IdentifyCost": 94, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 38.0, + "WeaponDamageDelta": 32.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9000, + "DynamicCraftCostRare": 14985, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098091008, + "Name": "Wand_106", + "GBID": 0, + "PAD": 0, + "SNOActor": 6425, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 50, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 197, + "CostAlt": 5, + "IdentifyCost": 100, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 48, + "CrafterRequiredLevel": 48, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 45.0, + "WeaponDamageDelta": 38.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9600, + "DynamicCraftCostRare": 15984, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098091009, + "Name": "Wand_107", + "GBID": 0, + "PAD": 0, + "SNOActor": 6426, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 50.0, + "WeaponDamageDelta": 42.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098092092, + "Name": "Wand_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 487, + "ItemTypesGBID": 4385866, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 209, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 58.0, + "WeaponDamageDelta": 49.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10600, + "DynamicCraftCostRare": 17649, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098092093, + "Name": "Wand_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 6421, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 64.0, + "WeaponDamageDelta": 54.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098092094, + "Name": "Wand_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 6422, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 116, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 4, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 70.0, + "WeaponDamageDelta": 59.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098092095, + "Name": "Wand_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 6423, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 60, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 227, + "CostAlt": 5, + "IdentifyCost": 120, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 59, + "CrafterRequiredLevel": 59, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 77.0, + "WeaponDamageDelta": 65.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11800, + "DynamicCraftCostRare": 19647, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098092096, + "Name": "Wand_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 6424, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 8, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 89.0, + "WeaponDamageDelta": 75.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098092097, + "Name": "Wand_206", + "GBID": 0, + "PAD": 0, + "SNOActor": 6425, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 9, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 102.0, + "WeaponDamageDelta": 86.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098092098, + "Name": "Wand_207", + "GBID": 0, + "PAD": 0, + "SNOActor": 6426, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 118.0, + "WeaponDamageDelta": 100.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098093181, + "Name": "Wand_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335373, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 158.0, + "WeaponDamageDelta": 134.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098093182, + "Name": "Wand_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367202, + "ItemTypesGBID": 4385866, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 300, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 193.0, + "WeaponDamageDelta": 164.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769069029, + "Name": "MightyWeapon1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 139044, + "ItemTypesGBID": -1488678091, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 5.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769069030, + "Name": "MightyWeapon1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 139059, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 83, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 8.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769069031, + "Name": "MightyWeapon1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 139062, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 20, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 107, + "CostAlt": 5, + "IdentifyCost": 40, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 17, + "CrafterRequiredLevel": 17, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 12.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3400, + "DynamicCraftCostRare": 5661, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769069032, + "Name": "MightyWeapon1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 139063, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 131, + "CostAlt": 5, + "IdentifyCost": 56, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 17.0, + "WeaponDamageDelta": 14.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5000, + "DynamicCraftCostRare": 8325, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769070118, + "Name": "MightyWeapon1H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 139044, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 143, + "CostAlt": 5, + "IdentifyCost": 64, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 16.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6000, + "DynamicCraftCostRare": 9990, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -390489785, + "Name": "MightyWeapon1H_101a", + "GBID": 0, + "PAD": 0, + "SNOActor": 139044, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 155, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 34, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 25.0, + "WeaponDamageDelta": 21.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6800, + "DynamicCraftCostRare": 11322, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769070119, + "Name": "MightyWeapon1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 139059, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 164, + "CostAlt": 5, + "IdentifyCost": 78, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 37, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 30.0, + "WeaponDamageDelta": 24.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7400, + "DynamicCraftCostRare": 12321, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -390489752, + "Name": "MightyWeapon1H_102a", + "GBID": 0, + "PAD": 0, + "SNOActor": 139059, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 86, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 37.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769070120, + "Name": "MightyWeapon1H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 139062, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 188, + "CostAlt": 5, + "IdentifyCost": 94, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 45.0, + "WeaponDamageDelta": 37.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9000, + "DynamicCraftCostRare": 14985, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769070121, + "Name": "MightyWeapon1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 139063, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 61.0, + "WeaponDamageDelta": 51.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769071207, + "Name": "MightyWeapon1H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 139044, + "ItemTypesGBID": -1488678091, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 78.0, + "WeaponDamageDelta": 66.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769071208, + "Name": "MightyWeapon1H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 139059, + "ItemTypesGBID": -1488678091, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 112.0, + "WeaponDamageDelta": 94.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769071209, + "Name": "MightyWeapon1H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 139062, + "ItemTypesGBID": -1488678091, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 129.0, + "WeaponDamageDelta": 109.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769071210, + "Name": "MightyWeapon1H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 139063, + "ItemTypesGBID": -1488678091, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 150.0, + "WeaponDamageDelta": 127.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769072296, + "Name": "MightyWeapon1H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 335340, + "ItemTypesGBID": -1488678091, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 201.0, + "WeaponDamageDelta": 170.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 769072297, + "Name": "MightyWeapon1H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367168, + "ItemTypesGBID": -1488678091, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 249.0, + "WeaponDamageDelta": 212.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808204422, + "Name": "MightyWeapon2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 139064, + "ItemTypesGBID": -1488678058, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 83, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 15.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808204423, + "Name": "MightyWeapon2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 139069, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 15, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 92, + "CostAlt": 5, + "IdentifyCost": 30, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 12, + "CrafterRequiredLevel": 12, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 39.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2400, + "DynamicCraftCostRare": 3996, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808204424, + "Name": "MightyWeapon2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 139070, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 21, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 110, + "CostAlt": 5, + "IdentifyCost": 42, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 18, + "CrafterRequiredLevel": 18, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 53.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3600, + "DynamicCraftCostRare": 5994, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808204425, + "Name": "MightyWeapon2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 139071, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 24, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 73.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4800, + "DynamicCraftCostRare": 7992, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 900942346, + "Name": "MightyWeapon2H_004a", + "GBID": 0, + "PAD": 0, + "SNOActor": 139071, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 31, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 140, + "CostAlt": 5, + "IdentifyCost": 62, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 29, + "CrafterRequiredLevel": 29, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 89.0, + "WeaponDamageDelta": 8.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5800, + "DynamicCraftCostRare": 9657, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808205511, + "Name": "MightyWeapon2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 139064, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 155, + "CostAlt": 5, + "IdentifyCost": 72, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 34, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 121.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6800, + "DynamicCraftCostRare": 11322, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808205512, + "Name": "MightyWeapon2H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 139069, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 170, + "CostAlt": 5, + "IdentifyCost": 82, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 164.0, + "WeaponDamageDelta": 14.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7800, + "DynamicCraftCostRare": 12987, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808205513, + "Name": "MightyWeapon2H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 139070, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 222.0, + "WeaponDamageDelta": 19.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808205514, + "Name": "MightyWeapon2H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 139071, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 332.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808206600, + "Name": "MightyWeapon2H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 139064, + "ItemTypesGBID": -1488678058, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 56, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 215, + "CostAlt": 5, + "IdentifyCost": 112, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 55, + "CrafterRequiredLevel": 55, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 467.0, + "WeaponDamageDelta": 43.0, + "DamageMinVariance": 6.0, + "DamageDeltaVariance": 6.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11000, + "DynamicCraftCostRare": 18315, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808206601, + "Name": "MightyWeapon2H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 139069, + "ItemTypesGBID": -1488678058, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 2, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 716.0, + "WeaponDamageDelta": 69.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808206602, + "Name": "MightyWeapon2H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 139070, + "ItemTypesGBID": -1488678058, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 62, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 233, + "CostAlt": 5, + "IdentifyCost": 124, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 838.0, + "WeaponDamageDelta": 81.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808206603, + "Name": "MightyWeapon2H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 139071, + "ItemTypesGBID": -1488678058, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 63, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 236, + "CostAlt": 5, + "IdentifyCost": 126, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 10, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 982.0, + "WeaponDamageDelta": 96.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808207689, + "Name": "MightyWeapon2H_301", + "GBID": 0, + "PAD": 0, + "SNOActor": 221451, + "ItemTypesGBID": -1488678058, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1096.0, + "WeaponDamageDelta": 109.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 808207690, + "Name": "MightyWeapon2H_302", + "GBID": 0, + "PAD": 0, + "SNOActor": 367170, + "ItemTypesGBID": -1488678058, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 140, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1462.0, + "WeaponDamageDelta": 147.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460779248, + "Name": "Flail_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 246811, + "ItemTypesGBID": -1363671135, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 5, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 62, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 4.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 200, + "DynamicCraftCostRare": 333, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460779247, + "Name": "Flail_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 247378, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 11, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 80, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 8, + "CrafterRequiredLevel": 8, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 7.0, + "WeaponDamageDelta": 5.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1600, + "DynamicCraftCostRare": 2664, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460779246, + "Name": "Flail_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 247379, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 98, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 14, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2800, + "DynamicCraftCostRare": 4662, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460779245, + "Name": "Flail_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 247380, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 116, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 20, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 13.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4000, + "DynamicCraftCostRare": 6660, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460779244, + "Name": "Flail_1H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 247381, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 28, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 131, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 25, + "CrafterRequiredLevel": 25, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 15.0, + "WeaponDamageDelta": 12.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5000, + "DynamicCraftCostRare": 8325, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460778159, + "Name": "Flail_1H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 246811, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 32, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 143, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 30, + "CrafterRequiredLevel": 30, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 18.0, + "WeaponDamageDelta": 14.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6000, + "DynamicCraftCostRare": 9990, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460778158, + "Name": "Flail_1H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 247378, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 36, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 155, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 34, + "CrafterRequiredLevel": 34, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 22.0, + "WeaponDamageDelta": 18.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6800, + "DynamicCraftCostRare": 11322, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460778157, + "Name": "Flail_1H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 247379, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 40, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 167, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 38, + "CrafterRequiredLevel": 38, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 27.0, + "WeaponDamageDelta": 22.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7600, + "DynamicCraftCostRare": 12654, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460778156, + "Name": "Flail_1H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 247380, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 36.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460778155, + "Name": "Flail_1H_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 247381, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 50.0, + "WeaponDamageDelta": 42.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460777070, + "Name": "Flail_1H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 246811, + "ItemTypesGBID": -1363671135, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 60.0, + "WeaponDamageDelta": 50.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460777069, + "Name": "Flail_1H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 247378, + "ItemTypesGBID": -1363671135, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 58, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 221, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 57, + "CrafterRequiredLevel": 57, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 3, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 70.0, + "WeaponDamageDelta": 59.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11400, + "DynamicCraftCostRare": 18981, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460777068, + "Name": "Flail_1H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 247379, + "ItemTypesGBID": -1363671135, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 89.0, + "WeaponDamageDelta": 75.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460777067, + "Name": "Flail_1H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 247380, + "ItemTypesGBID": -1363671135, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 157.0, + "WeaponDamageDelta": 133.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460777066, + "Name": "Flail_1H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 247381, + "ItemTypesGBID": -1363671135, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 192.0, + "WeaponDamageDelta": 163.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.4, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421643855, + "Name": "Flail_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 247307, + "ItemTypesGBID": -1363671102, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 6, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 65, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 3, + "CrafterRequiredLevel": 3, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 8.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 600, + "DynamicCraftCostRare": 999, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421643854, + "Name": "Flail_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 247384, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 83, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 13.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421643853, + "Name": "Flail_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 247385, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 18, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 101, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 15, + "CrafterRequiredLevel": 15, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 39.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 3000, + "DynamicCraftCostRare": 4995, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421643852, + "Name": "Flail_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 247386, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 24, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 119, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 21, + "CrafterRequiredLevel": 21, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 53.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4200, + "DynamicCraftCostRare": 6993, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421643851, + "Name": "Flail_2H_005", + "GBID": 0, + "PAD": 0, + "SNOActor": 247387, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 27, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 68.0, + "WeaponDamageDelta": 5.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5400, + "DynamicCraftCostRare": 8991, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421642766, + "Name": "Flail_2H_101", + "GBID": 0, + "PAD": 0, + "SNOActor": 247307, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 35, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 152, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 33, + "CrafterRequiredLevel": 33, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 91.0, + "WeaponDamageDelta": 7.0, + "DamageMinVariance": 2.0, + "DamageDeltaVariance": 2.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6600, + "DynamicCraftCostRare": 10989, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421642765, + "Name": "Flail_2H_102", + "GBID": 0, + "PAD": 0, + "SNOActor": 247384, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 39, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 164, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 37, + "CrafterRequiredLevel": 37, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 114.0, + "WeaponDamageDelta": 9.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7400, + "DynamicCraftCostRare": 12321, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421642764, + "Name": "Flail_2H_103", + "GBID": 0, + "PAD": 0, + "SNOActor": 247385, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 43, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 176, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 41, + "CrafterRequiredLevel": 41, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 144.0, + "WeaponDamageDelta": 12.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8200, + "DynamicCraftCostRare": 13653, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421642763, + "Name": "Flail_2H_104", + "GBID": 0, + "PAD": 0, + "SNOActor": 247386, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 47, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 188, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 45, + "CrafterRequiredLevel": 45, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 181.0, + "WeaponDamageDelta": 15.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 9000, + "DynamicCraftCostRare": 14985, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421642762, + "Name": "Flail_2H_105", + "GBID": 0, + "PAD": 0, + "SNOActor": 247387, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 252.0, + "WeaponDamageDelta": 21.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421641677, + "Name": "Flail_2H_201", + "GBID": 0, + "PAD": 0, + "SNOActor": 247307, + "ItemTypesGBID": -1363671102, + "Flags": 139296, + "DyeType": 0, + "ItemLevel": 55, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 212, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 54, + "CrafterRequiredLevel": 54, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 326.0, + "WeaponDamageDelta": 27.0, + "DamageMinVariance": 7.0, + "DamageDeltaVariance": 7.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10800, + "DynamicCraftCostRare": 17982, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421641676, + "Name": "Flail_2H_202", + "GBID": 0, + "PAD": 0, + "SNOActor": 247384, + "ItemTypesGBID": -1363671102, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 59, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 224, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 58, + "CrafterRequiredLevel": 58, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 3, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 422.0, + "WeaponDamageDelta": 37.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11600, + "DynamicCraftCostRare": 19314, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421641675, + "Name": "Flail_2H_203", + "GBID": 0, + "PAD": 0, + "SNOActor": 247385, + "ItemTypesGBID": -1363671102, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 6, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 528.0, + "WeaponDamageDelta": 48.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421641674, + "Name": "Flail_2H_204", + "GBID": 0, + "PAD": 0, + "SNOActor": 247386, + "ItemTypesGBID": -1363671102, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 11, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 986.0, + "WeaponDamageDelta": 96.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1421641673, + "Name": "Flail_2H_205", + "GBID": 0, + "PAD": 0, + "SNOActor": 247387, + "ItemTypesGBID": -1363671102, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1351.0, + "WeaponDamageDelta": 135.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.15, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 411346552, + "Name": "Scythe_1H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 454792, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 68, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716286275, + "Name": "Scythe_1H_001_t2", + "GBID": 0, + "PAD": 0, + "SNOActor": 464147, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 89, + "CostAlt": 5, + "IdentifyCost": 24, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 8.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716286274, + "Name": "Scythe_1H_001_t3", + "GBID": 0, + "PAD": 0, + "SNOActor": 466313, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 106, + "CostAlt": 5, + "IdentifyCost": 34, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 14, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10.0, + "WeaponDamageDelta": 8.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2800, + "DynamicCraftCostRare": 4662, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716286273, + "Name": "Scythe_1H_001_t4", + "GBID": 0, + "PAD": 0, + "SNOActor": 454792, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 46, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 20, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 14.0, + "WeaponDamageDelta": 11.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4000, + "DynamicCraftCostRare": 6660, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 411346553, + "Name": "Scythe_1H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 464147, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 150, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 26, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 16.0, + "WeaponDamageDelta": 12.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5200, + "DynamicCraftCostRare": 8658, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716250338, + "Name": "Scythe_1H_002_t2", + "GBID": 0, + "PAD": 0, + "SNOActor": 466313, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 170, + "CostAlt": 5, + "IdentifyCost": 66, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 31, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 15.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6200, + "DynamicCraftCostRare": 10323, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716250337, + "Name": "Scythe_1H_002_t3", + "GBID": 0, + "PAD": 0, + "SNOActor": 454792, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 191, + "CostAlt": 5, + "IdentifyCost": 74, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 25.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716250336, + "Name": "Scythe_1H_002_t4", + "GBID": 0, + "PAD": 0, + "SNOActor": 464147, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 213, + "CostAlt": 5, + "IdentifyCost": 82, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 31.0, + "WeaponDamageDelta": 25.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7800, + "DynamicCraftCostRare": 12987, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716250335, + "Name": "Scythe_1H_002_t5", + "GBID": 0, + "PAD": 0, + "SNOActor": 466313, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 240, + "CostAlt": 5, + "IdentifyCost": 92, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 41.0, + "WeaponDamageDelta": 34.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716250334, + "Name": "Scythe_1H_002_t6", + "GBID": 0, + "PAD": 0, + "SNOActor": 454792, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 290, + "CostAlt": 5, + "IdentifyCost": 102, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 58.0, + "WeaponDamageDelta": 48.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716250333, + "Name": "Scythe_1H_002_t7", + "GBID": 0, + "PAD": 0, + "SNOActor": 464147, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 302, + "CostAlt": 5, + "IdentifyCost": 108, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 68.0, + "WeaponDamageDelta": 57.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10600, + "DynamicCraftCostRare": 17649, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716250332, + "Name": "Scythe_1H_002_t8", + "GBID": 0, + "PAD": 0, + "SNOActor": 466313, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 313, + "CostAlt": 5, + "IdentifyCost": 114, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 81.0, + "WeaponDamageDelta": 68.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11200, + "DynamicCraftCostRare": 18648, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 411346554, + "Name": "Scythe_1H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 454792, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 386, + "CostAlt": 5, + "IdentifyCost": 122, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 111.0, + "WeaponDamageDelta": 93.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -716214401, + "Name": "Scythe_1H_003_t2", + "GBID": 0, + "PAD": 0, + "SNOActor": 464147, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 431, + "CostAlt": 5, + "IdentifyCost": 130, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 201.0, + "WeaponDamageDelta": 170.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 411346555, + "Name": "Scythe_1H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 467578, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 485, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 249.0, + "WeaponDamageDelta": 212.0, + "DamageMinVariance": 4.0, + "DamageDeltaVariance": 4.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 450481945, + "Name": "Scythe_2H_001", + "GBID": 0, + "PAD": 0, + "SNOActor": 467587, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 71, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 10.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238026174, + "Name": "Scythe_2H_001_t2", + "GBID": 0, + "PAD": 0, + "SNOActor": 467595, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 12, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 83, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 9, + "CrafterRequiredLevel": 9, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 14.0, + "WeaponDamageDelta": 0.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1800, + "DynamicCraftCostRare": 2997, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238026175, + "Name": "Scythe_2H_001_t3", + "GBID": 0, + "PAD": 0, + "SNOActor": 467596, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 17, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 98, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 14, + "CrafterRequiredLevel": 14, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 39.0, + "WeaponDamageDelta": 3.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 2800, + "DynamicCraftCostRare": 4662, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238026176, + "Name": "Scythe_2H_001_t4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467587, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 23, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 116, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 20, + "CrafterRequiredLevel": 20, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 53.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 4000, + "DynamicCraftCostRare": 6660, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 450481946, + "Name": "Scythe_2H_002", + "GBID": 0, + "PAD": 0, + "SNOActor": 467595, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 26, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 68.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 5200, + "DynamicCraftCostRare": 8658, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238062111, + "Name": "Scythe_2H_002_t2", + "GBID": 0, + "PAD": 0, + "SNOActor": 467596, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 33, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 146, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 31, + "CrafterRequiredLevel": 31, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 86.0, + "WeaponDamageDelta": 6.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 6200, + "DynamicCraftCostRare": 10323, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238062112, + "Name": "Scythe_2H_002_t3", + "GBID": 0, + "PAD": 0, + "SNOActor": 467587, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 37, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 158, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 35, + "CrafterRequiredLevel": 35, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 109.0, + "WeaponDamageDelta": 8.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7000, + "DynamicCraftCostRare": 11655, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238062113, + "Name": "Scythe_2H_002_t4", + "GBID": 0, + "PAD": 0, + "SNOActor": 467595, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 41, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 170, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 39, + "CrafterRequiredLevel": 39, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 139.0, + "WeaponDamageDelta": 11.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 7800, + "DynamicCraftCostRare": 12987, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238062114, + "Name": "Scythe_2H_002_t5", + "GBID": 0, + "PAD": 0, + "SNOActor": 467596, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 46, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 185, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 44, + "CrafterRequiredLevel": 44, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 187.0, + "WeaponDamageDelta": 16.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 8800, + "DynamicCraftCostRare": 14652, + "DynamicCraftAffixCount": 5, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238062115, + "Name": "Scythe_2H_002_t6", + "GBID": 0, + "PAD": 0, + "SNOActor": 467587, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 51, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 200, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 50, + "CrafterRequiredLevel": 50, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 278.0, + "WeaponDamageDelta": 26.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10000, + "DynamicCraftCostRare": 16650, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238062116, + "Name": "Scythe_2H_002_t7", + "GBID": 0, + "PAD": 0, + "SNOActor": 467595, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 54, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 209, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 53, + "CrafterRequiredLevel": 53, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 340.0, + "WeaponDamageDelta": 33.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 10600, + "DynamicCraftCostRare": 17649, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238062117, + "Name": "Scythe_2H_002_t8", + "GBID": 0, + "PAD": 0, + "SNOActor": 467596, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 57, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 218, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 56, + "CrafterRequiredLevel": 56, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 414.0, + "WeaponDamageDelta": 40.0, + "DamageMinVariance": 3.0, + "DamageDeltaVariance": 3.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 11200, + "DynamicCraftCostRare": 18648, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 450481947, + "Name": "Scythe_2H_003", + "GBID": 0, + "PAD": 0, + "SNOActor": 467587, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 61, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 230, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 60, + "CrafterRequiredLevel": 60, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 25000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 587.0, + "WeaponDamageDelta": 57.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12000, + "DynamicCraftCostRare": 19980, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1238098048, + "Name": "Scythe_2H_003_t2", + "GBID": 0, + "PAD": 0, + "SNOActor": 467595, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 65, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 242, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 61, + "CrafterRequiredLevel": 61, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1098.0, + "WeaponDamageDelta": 111.0, + "DamageMinVariance": 5.0, + "DamageDeltaVariance": 5.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 12200, + "DynamicCraftCostRare": 20313, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 450481948, + "Name": "Scythe_2H_004", + "GBID": 0, + "PAD": 0, + "SNOActor": 467597, + "ItemTypesGBID": 151398954, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 70, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 257, + "CostAlt": 5, + "IdentifyCost": 1, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 70, + "CrafterRequiredLevel": 70, + "BaseDurability": 550, + "DurabilityVariance": 200, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 1, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 1461.0, + "WeaponDamageDelta": 146.0, + "DamageMinVariance": 8.0, + "DamageDeltaVariance": 8.0, + "AttacksPerSecond": 1.1, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 14000, + "DynamicCraftCostRare": 23310, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -546181147, + "Name": "Axe_1H_000", + "GBID": 0, + "PAD": 0, + "SNOActor": 3245, + "ItemTypesGBID": 109694, + "Flags": 8224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 0, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -448105008, + "Name": "CeremonialDagger_1H_000", + "GBID": 0, + "PAD": 0, + "SNOActor": 139102, + "ItemTypesGBID": -199811863, + "Flags": 8224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 400, + "DurabilityVariance": 0, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2098089913, + "Name": "Wand_000", + "GBID": 0, + "PAD": 0, + "SNOActor": 487, + "ItemTypesGBID": 4385866, + "Flags": 8224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 400, + "DurabilityVariance": 0, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213663, + "SNORareNameSuffixStringList": 213686, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30601, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 5543879, + "Name": "FistWeapon_1H_000", + "GBID": 0, + "PAD": 0, + "SNOActor": 4133, + "ItemTypesGBID": -2094596416, + "Flags": 8224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 400, + "DurabilityVariance": 0, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213657, + "SNORareNameSuffixStringList": 213679, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1135660298, + "Name": "HandXbow_000", + "GBID": 0, + "PAD": 0, + "SNOActor": 82626, + "ItemTypesGBID": 763102523, + "Flags": 8224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 400, + "DurabilityVariance": 0, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30599, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1460779249, + "Name": "Flail_1H_000", + "GBID": 0, + "PAD": 0, + "SNOActor": 246811, + "ItemTypesGBID": -1363671135, + "Flags": 8224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 0, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 411346551, + "Name": "Scythe_1H_000", + "GBID": 0, + "PAD": 0, + "SNOActor": 454792, + "ItemTypesGBID": 151398921, + "Flags": 8224, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 0, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 2.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 0.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.2, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 870062260, + "Name": "MightyWeapon2H_shadowClone_Normal", + "GBID": 0, + "PAD": 0, + "SNOActor": 225016, + "ItemTypesGBID": -1488678058, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 27, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 558657834, + "Name": "MightyWeapon2H_shadowClone_Nightmare", + "GBID": 0, + "PAD": 0, + "SNOActor": 225016, + "ItemTypesGBID": -1488678058, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 27, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 80.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 268761200, + "Name": "MightyWeapon2H_shadowClone_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 225016, + "ItemTypesGBID": -1488678058, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 27, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 150.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 726243004, + "Name": "MightyWeapon2H_shadowClone_Inferno", + "GBID": 0, + "PAD": 0, + "SNOActor": 225016, + "ItemTypesGBID": -1488678058, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 27, + "BaseDurability": 400, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 220.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 245198727, + "Name": "CeremonialDagger_shadowClone_Normal", + "GBID": 0, + "PAD": 0, + "SNOActor": 225023, + "ItemTypesGBID": -199811863, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 27, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1073104099, + "Name": "CeremonialDagger_shadowClone_Nightmare", + "GBID": 0, + "PAD": 0, + "SNOActor": 225023, + "ItemTypesGBID": -199811863, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 27, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 80.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 449609347, + "Name": "CeremonialDagger_shadowClone_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 225023, + "ItemTypesGBID": -199811863, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 27, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 150.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1580582895, + "Name": "CeremonialDagger_shadowClone_Inferno", + "GBID": 0, + "PAD": 0, + "SNOActor": 225023, + "ItemTypesGBID": -199811863, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 27, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 128, + "CostAlt": 5, + "IdentifyCost": 54, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 24, + "CrafterRequiredLevel": 27, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213656, + "SNORareNameSuffixStringList": 213678, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 220.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1988905000, + "Name": "CombatStaff_shadowClone_Normal", + "GBID": 0, + "PAD": 0, + "SNOActor": 225017, + "ItemTypesGBID": -1620551894, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 30, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1073619938, + "Name": "CombatStaff_shadowClone_Nightmare", + "GBID": 0, + "PAD": 0, + "SNOActor": 225017, + "ItemTypesGBID": -1620551894, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 30, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 80.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -298140956, + "Name": "CombatStaff_shadowClone_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 225017, + "ItemTypesGBID": -1620551894, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 30, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 150.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1006652240, + "Name": "CombatStaff_shadowClone_Inferno", + "GBID": 0, + "PAD": 0, + "SNOActor": 225017, + "ItemTypesGBID": -1620551894, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 30, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 137, + "CostAlt": 5, + "IdentifyCost": 60, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 27, + "CrafterRequiredLevel": 30, + "BaseDurability": 350, + "DurabilityVariance": 100, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 10000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 220.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2141005159, + "Name": "HandXbow_shadowClone_Normal", + "GBID": 0, + "PAD": 0, + "SNOActor": 225021, + "ItemTypesGBID": 763102523, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 122, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 25, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -765123345, + "Name": "HandXbow_shadowClone_Nightmare", + "GBID": 0, + "PAD": 0, + "SNOActor": 225021, + "ItemTypesGBID": 763102523, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 122, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 25, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 80.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1548223211, + "Name": "HandXbow_shadowClone_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 225021, + "ItemTypesGBID": 763102523, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 122, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 25, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 150.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 145265985, + "Name": "HandXbow_shadowClone_Inferno", + "GBID": 0, + "PAD": 0, + "SNOActor": 225021, + "ItemTypesGBID": 763102523, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 25, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 122, + "CostAlt": 5, + "IdentifyCost": 50, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 22, + "CrafterRequiredLevel": 25, + "BaseDurability": 500, + "DurabilityVariance": 100, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213655, + "SNORareNameSuffixStringList": 213677, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 220.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": 503, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2057563918, + "Name": "Staff_shadowClone_Normal", + "GBID": 0, + "PAD": 0, + "SNOActor": 225022, + "ItemTypesGBID": 140658708, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 29, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 20.0, + "WeaponDamageDelta": 10.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -24418136, + "Name": "Staff_shadowClone_Nightmare", + "GBID": 0, + "PAD": 0, + "SNOActor": 225022, + "ItemTypesGBID": 140658708, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 29, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 80.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1007536430, + "Name": "Staff_shadowClone_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 225022, + "ItemTypesGBID": 140658708, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 29, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 150.0, + "WeaponDamageDelta": 20.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1396140358, + "Name": "Staff_shadowClone_Inferno", + "GBID": 0, + "PAD": 0, + "SNOActor": 225022, + "ItemTypesGBID": 140658708, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 3, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 29, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 220.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -223172801, + "Name": "Flail1H_shadowClone_Normal", + "GBID": 0, + "PAD": 0, + "SNOActor": 358764, + "ItemTypesGBID": -1363671135, + "Flags": 8226, + "DyeType": 0, + "ItemLevel": 29, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 134, + "CostAlt": 5, + "IdentifyCost": 58, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 26, + "CrafterRequiredLevel": 29, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213662, + "SNORareNameSuffixStringList": 213685, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 220.0, + "WeaponDamageDelta": 30.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -2120297810, + "Name": "Scythe_shadowClone_Normal", + "GBID": 0, + "PAD": 0, + "SNOActor": 475906, + "ItemTypesGBID": 151398921, + "Flags": 131104, + "DyeType": 0, + "ItemLevel": 8, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 68, + "CostAlt": 5, + "IdentifyCost": 16, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 5, + "CrafterRequiredLevel": 5, + "BaseDurability": 500, + "DurabilityVariance": 150, + "EnchantAffixCost": 1125, + "EnchantAffixCostX1": 1125, + "TransmogUnlockCrafterLevel": 12, + "TransmogCost": 50000, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213661, + "SNORareNameSuffixStringList": 213684, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 6.0, + "WeaponDamageDelta": 4.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 1.0, + "AttacksPerSecond": 1.3, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": -1, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 2, + "EnchantAffixIngredients": [ + { + "ItemsGBID": -1585802162, + "Count": 2 + }, + { + "ItemsGBID": -605947593, + "Count": 2 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 2, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": -1585802162, + "Count": 3 + }, + { + "ItemsGBID": -605947593, + "Count": 3 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 1000, + "DynamicCraftCostRare": 1665, + "DynamicCraftAffixCount": 6, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 1009973938, + "Name": "StaffOfCow", + "GBID": 0, + "PAD": 0, + "SNOActor": 210432, + "ItemTypesGBID": 140658708, + "Flags": 9315, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 0, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": -1095263856, + "Name": "StaffOfCow_Nightmare", + "GBID": 0, + "PAD": 0, + "SNOActor": 210432, + "ItemTypesGBID": 140658708, + "Flags": 9315, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 0, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2067122454, + "Name": "StaffOfCow_Hell", + "GBID": 0, + "PAD": 0, + "SNOActor": 210432, + "ItemTypesGBID": 140658708, + "Flags": 9315, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 0, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + }, + { + "Hash": 2061725090, + "Name": "StaffOfCow_Inferno", + "GBID": 0, + "PAD": 0, + "SNOActor": 210432, + "ItemTypesGBID": 140658708, + "Flags": 9315, + "DyeType": 0, + "ItemLevel": 1, + "ItemAct": 0, + "AffixLevel": 0, + "BonusAffixes": 0, + "BonusMajorAffixes": 0, + "BonusMinorAffixes": 0, + "MaxSockets": 2, + "MaxStackSize": 0, + "Cost": 50, + "CostAlt": 5, + "IdentifyCost": 2, + "SellOverrideCost": 0, + "RemoveGemCost": 0, + "RequiredLevel": 1, + "CrafterRequiredLevel": 1, + "BaseDurability": 500, + "DurabilityVariance": 0, + "EnchantAffixCost": 1162, + "EnchantAffixCostX1": 1162, + "TransmogUnlockCrafterLevel": 0, + "TransmogCost": 500, + "SNOBaseItem": -1, + "SNOSet": -1, + "SNOComponentTreasureClass": -1, + "SNOComponentTreasureClassMagic": -1, + "SNOComponentTreasureClassRare": -1, + "SNOComponentTreasureClassLegend": -1, + "SNORareNamePrefixStringList": 213660, + "SNORareNameSuffixStringList": 213682, + "StartEffect": -1, + "EndEffect": -1, + "PortraitBkgrnd": 0, + "PortraitHPBar": 0, + "PortraitBanner": 0, + "PortraitFrame": 0, + "Labels": [ + 0, + 0, + 0, + 0, + 0 + ], + "Pad": 0.0, + "WeaponDamageMin": 3.0, + "WeaponDamageDelta": 1.0, + "DamageMinVariance": 1.0, + "DamageDeltaVariance": 0.0, + "AttacksPerSecond": 1.0, + "Armor": 0.0, + "ArmorDelta": 0.0, + "SNOSkill0": 30592, + "SkillI0": 0, + "SNOSkill1": -1, + "SkillI1": 0, + "SNOSkill2": -1, + "SkillI2": 0, + "SNOSkill3": -1, + "SkillI3": 0, + "Attribute": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "Quality": 9, + "RecipeToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "TransmogsToGrant": [ + -1, + -1, + -1, + -1, + -1, + -1, + -1, + -1 + ], + "Massive0": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryAffixFamily": [ + -1, + -1, + -1, + -1, + -1, + -1 + ], + "MaxAffixLevel": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "I38": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "LegendaryFamily": -1, + "GemT": 0, + "CraftingTier": 0, + "CraftingQuality": 0, + "snoActorPageOfFatePortal": -1, + "snoWorldPageOfFate1": -1, + "snoWorldPageOfFate2": -1, + "snoLevelAreaPageOfFatePortal": -1, + "EnchantAffixIngredientsCount": 0, + "EnchantAffixIngredients": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "EnchantAffixIngredientsCountX1": 0, + "EnchantAffixIngredientsX1": [ + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + }, + { + "ItemsGBID": 0, + "Count": 0 + } + ], + "LegendaryPowerItemReplacement": -1, + "SeasonRequiredToDrop": -1, + "Attribute1": [ + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + }, + { + "AttributeId": -1, + "SNOParam": -1, + "Formula": [] + } + ], + "JewelSecondaryEffectUnlockRank": -1, + "JewelMaxRank": -1, + "MainEffect": -1, + "DateReleased": 5, + "VacuumPickup": 0, + "CostAlt2": 0, + "DynamicCraftCostMagic": 0, + "DynamicCraftCostRare": 0, + "DynamicCraftAffixCount": 0, + "SeasonCacheTreasureClass": -1 + } + ] +} \ No newline at end of file